首次上传

This commit is contained in:
dekun
2026-05-16 22:25:48 +08:00
commit 2b8f902548
88 changed files with 16386 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""本地启动:python run.py(需先 config.yaml + venv)。"""
from __future__ import annotations
import uvicorn
from app.config import load_settings
if __name__ == "__main__":
s = load_settings()
uvicorn.run(
"app.main:app",
host=s.app.host,
port=s.app.port,
reload=False,
)