From 007a33e51d7d18ba66eaf5d9d7ebcbd37548e7ee Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Wed, 21 Aug 2024 14:44:40 -0700 Subject: [PATCH] update to main flask in order to reach host port --- backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index c23e910..1b323dd 100644 --- a/backend/main.py +++ b/backend/main.py @@ -160,4 +160,4 @@ if __name__ == "__main__": with app.app_context(): db.create_all() - app.run(debug=True, port=5080) \ No newline at end of file + app.run(debug=True, port=5080, host="0.0.0.0") \ No newline at end of file