first commit

This commit is contained in:
dekun
2026-05-22 13:06:42 +08:00
commit af5c249cf8
27 changed files with 1741 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import uvicorn
from backend.app.config import settings
if __name__ == "__main__":
uvicorn.run(
"backend.app.main:app",
host=settings.host,
port=settings.port,
reload=False,
)