feat: add serve script and console entry point

This commit is contained in:
2026-07-05 01:11:16 +08:00
parent 9ae676d9cc
commit 2c1dcf22cf
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
"""便捷启动脚本."""
import uvicorn
if __name__ == "__main__":
uvicorn.run("src.server.app:app", host="0.0.0.0", port=8000, reload=True)