From b886f60d4eb7e3e50b4b2cbd97597d5627b8121e Mon Sep 17 00:00:00 2001 From: Angoosh Leviocki Date: Tue, 26 May 2026 09:46:56 +0200 Subject: [PATCH] switched app listen from localhost to all --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 1018cf9..66c7dba 100644 --- a/app.py +++ b/app.py @@ -98,4 +98,4 @@ if __name__ == '__main__': # Initialize the database before starting the server init_db() # Run the app in debug mode - app.run(debug=True) + app.run(host='0.0.0.0', port=5000, debug=True)