no security

This commit is contained in:
Vassili Minaev 2026-01-15 17:59:29 -07:00
parent 7e3d980aa8
commit 847dac39b6

2
app.py
View file

@ -170,6 +170,6 @@ def create_app() -> web.Application:
return app
if __name__ == "__main__":
host = os.getenv("HOST", "127.0.0.1")
host = os.getenv("HOST", "0.0.0.0")
port = int(os.getenv("PORT", "9000"))
web.run_app(create_app(), host=host, port=port)