change listen address to all

This commit is contained in:
Julian Freeman
2025-06-26 14:13:50 -04:00
parent e6b7c8d34d
commit 7a362f2f25
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@@ -174,3 +174,5 @@ cython_debug/
# PyPI configuration file # PyPI configuration file
.pypirc .pypirc
/static/output/*

View File

@@ -125,4 +125,4 @@ async def remove_bg(files: List[UploadFile] = File(...)):
if __name__ == "__main__": if __name__ == "__main__":
import uvicorn import uvicorn
uvicorn.run(app, host="127.0.0.1", port=7310) uvicorn.run(app, host="0.0.0.0", port=7310)