This commit is contained in:
2026-02-23 20:58:35 +00:00
parent 3b50ef1c59
commit 6f110bd113
11 changed files with 21 additions and 5858 deletions
+2 -2
View File
@@ -312,7 +312,7 @@ def run_development_mode():
uvicorn.run(
"main:app",
host="0.0.0.0",
port=int(os.getenv('UVICORN_PORT', 8080)),
port=int(os.getenv('UVICORN_PORT', 8000)),
log_level=os.getenv('LOG_LEVEL', 'info'),
proxy_headers=True,
timeout_keep_alive=10,
@@ -347,7 +347,7 @@ def run_production_mode():
uvicorn.run(
"main:app",
host="0.0.0.0",
port=int(os.getenv('UVICORN_PORT', 8080)),
port=int(os.getenv('UVICORN_PORT', 8000)),
log_level=os.getenv('LOG_LEVEL', 'info'),
proxy_headers=True,
timeout_keep_alive=10,