From e2398d2f13973756c1b16df544c9fd6f883279e0 Mon Sep 17 00:00:00 2001 From: Saravanan21-dev Date: Sat, 8 Nov 2025 20:54:57 +0530 Subject: [PATCH] Run app with debug mode enabled Enable debug mode for the app when running. --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index c97f01c..9af8139 100644 --- a/app.py +++ b/app.py @@ -2,6 +2,7 @@ if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000, debug=True) # monkey patch is "required to force the message queue package to use coroutine friendly functions and classes" # check flask-socketio docs https://flask-socketio.readthedocs.io/en/latest/ import eventlet