Use the correct port for dokku

This commit is contained in:
Daoud Clarke 2022-06-17 23:54:22 +01:00
parent 77088a8a1b
commit d7c6dcb5c2

View file

@ -58,7 +58,7 @@ def run():
app.include_router(crawler_router)
# Initialize uvicorn server using global app instance and server config params
uvicorn.run(app, host="0.0.0.0", port=8080)
uvicorn.run(app, host="0.0.0.0", port=5000)
if __name__ == "__main__":