Changed 127.0.0.1 to 0.0.0.0
All checks were successful
Build and Push Docker Image / build-and-push (release) Successful in 1m59s

This commit is contained in:
2025-09-15 14:36:54 +03:00
parent 523ac2228d
commit 06e24e35e1

View File

@ -5,4 +5,4 @@ from app_creator import create_app
if __name__ == '__main__':
app = create_app()
uvicorn.run(app=app, host="127.0.0.1", port=8000, log_level=uvicorn_logging_level.lower())
uvicorn.run(app=app, host="0.0.0.0", port=8000, log_level=uvicorn_logging_level.lower())