This commit is contained in:
hackrobot
2025-04-07 06:46:27 -05:00
parent 8275ce2ce6
commit cdfbabc0f7
20 changed files with 105 additions and 3 deletions

6
run.py Normal file
View File

@@ -0,0 +1,6 @@
import uvicorn
if __name__ == "__main__":
# uvicorn.run("app.main:app", host="0.0.0.0", port=8700, reload=True)
uvicorn.run("app.main:app", host="127.0.0.1", port=8700, reload=True)