diff --git a/androidh5api.sh b/androidh5api.sh new file mode 100644 index 0000000..64d2ef0 --- /dev/null +++ b/androidh5api.sh @@ -0,0 +1 @@ +python3 run.py \ No newline at end of file diff --git a/run.py b/run.py new file mode 100644 index 0000000..dd31e82 --- /dev/null +++ b/run.py @@ -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) +