This commit is contained in:
Mathieu Dallaire
2025-08-04 10:56:01 -04:00
parent 82f2c7d4ec
commit c83ba467b1
+1 -1
View File
@@ -23,4 +23,4 @@ app.include_router(router=router)
if __name__ == "__main__":
host = os.getenv("HOST", "0.0.0.0")
uvicorn.run(app, host="host", port=8191, log_level=LOG_LEVEL) # noqa: S104
uvicorn.run(app, host=host, port=8191, log_level=LOG_LEVEL) # noqa: S104