From 71f32d96e4fda503077f4c8400b8df4e0f4c509b Mon Sep 17 00:00:00 2001 From: Vivek Teega Date: Sun, 30 Apr 2023 11:02:53 +0000 Subject: [PATCH] Moved host and port to config file --- ranchimallflo_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ranchimallflo_api.py b/ranchimallflo_api.py index 0e0248b..faffb9a 100644 --- a/ranchimallflo_api.py +++ b/ranchimallflo_api.py @@ -2444,4 +2444,4 @@ scheduler.start() atexit.register(lambda: scheduler.shutdown()) if __name__ == "__main__": - app.run(debug=debug_status, host='0.0.0.0', port=5009) + app.run(debug=debug_status, host=HOST, port=PORT)