| 1234567891011121314151617 |
- from __future__ import annotations
- import os
- import uvicorn
- from backend.config import settings
- if __name__ == "__main__":
- uvicorn.run(
- "backend.main:app",
- host=os.getenv("APP_HOST", settings.app_host),
- port=int(os.getenv("APP_PORT", str(settings.app_port))),
- access_log=os.getenv("APP_ACCESS_LOG", "false").strip().lower() in {"1", "true", "yes", "on"},
- reload=False,
- )
|