Updated main.py and .gitignore

This commit is contained in:
superobk
2024-04-03 14:03:18 +08:00
parent c002901376
commit 726248246e
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -163,4 +163,5 @@ cython_debug/
.DS_Store
playground.py
.env*
models
models
.idea/

View File

@ -25,4 +25,4 @@ async def workflows(reqest: Request):
print("workflows")
if __name__ == "__main__":
uvicorn.run("main:app", host="127.0.0.1", port=8000, log_level="info")
uvicorn.run("main:app", host="0.0.0.0", port=8000, log_level="info")