This commit is contained in:
2025-10-16 15:06:50 +09:00
parent 2fcca115d6
commit 230ea0890d
11 changed files with 1587 additions and 145 deletions

2
app.py
View File

@@ -102,4 +102,4 @@ if __name__ == "__main__":
host = os.getenv("FLASK_HOST", "0.0.0.0")
port = int(os.getenv("FLASK_PORT", 5000))
debug = os.getenv("FLASK_DEBUG", "true").lower() == "true"
socketio.run(app, host=host, port=port, debug=debug)
socketio.run(app, host=host, port=port, debug=debug, allow_unsafe_werkzeug=True)