This commit is contained in:
hackrobot
2024-09-14 13:03:45 +08:00
parent a1a21ab269
commit 2e08a0259a
2 changed files with 7 additions and 0 deletions

1
androidh5api.sh Normal file
View File

@@ -0,0 +1 @@
python3 run.py

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)