This commit is contained in:
2026-05-14 15:07:34 +08:00
parent c2a398930d
commit 10d04c4083
179 changed files with 24073 additions and 1243 deletions

19
backend/main.py Normal file
View File

@@ -0,0 +1,19 @@
"""Convenience launcher for the migrated backend app."""
import uvicorn
from app.config.settings import settings
def main() -> None:
uvicorn.run(
"app.main:app",
host=settings.api_host,
port=settings.api_port,
reload=settings.debug,
log_level="info",
)
if __name__ == "__main__":
main()