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

View File

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