初始化

This commit is contained in:
lhx
2025-09-26 15:58:32 +08:00
commit fe73da9cf5
45 changed files with 1075 additions and 0 deletions

11
main.py Normal file
View File

@@ -0,0 +1,11 @@
import uvicorn
from app.main import app
from app.core.config import settings
if __name__ == "__main__":
uvicorn.run(
"app.main:app",
host=settings.APP_HOST,
port=settings.APP_PORT,
reload=settings.APP_DEBUG
)