Pre-merge edit

This commit is contained in:
IgorVolochay
2026-01-10 18:05:50 +03:00
parent e92ade6c94
commit c5c42e4689
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ def health_check():
async def main():
config = uvicorn.Config("main:app", port=int(os.getenv('BACKEND_PORT')), host="0.0.0.0", log_level="critical")
config = uvicorn.Config("main:app", port=int(os.getenv('BACKEND_PORT', 8000)), host="0.0.0.0", log_level="critical")
server = uvicorn.Server(config)
await server.serve()