refactor(main): remove allow_unsafe_werkzeug option from SocketIO run configuration

This commit is contained in:
JSC
2025-07-04 20:30:58 +02:00
parent ccc5ee38e2
commit 5876b247f4

View File

@@ -9,7 +9,7 @@ load_dotenv()
def main() -> None: def main() -> None:
"""Run the Flask application with SocketIO.""" """Run the Flask application with SocketIO."""
app = create_app() app = create_app()
socketio.run(app, debug=True, host="0.0.0.0", port=5000, allow_unsafe_werkzeug=True) socketio.run(app, debug=True, host="0.0.0.0", port=5000)
if __name__ == "__main__": if __name__ == "__main__":