This commit is contained in:
eric
2026-03-31 07:04:37 -05:00
parent 5a5b4d1beb
commit 1f7894c768
9 changed files with 705 additions and 0 deletions

6
run.py Normal file
View File

@@ -0,0 +1,6 @@
import uvicorn
if __name__ == "__main__":
# 如果 8000 被其他程序占用,可以改成 8001
uvicorn.run("main:app", host="0.0.0.0", port=8001, reload=False)