From da4150984018db6525219d4fc93d5c6adfc9cf9a Mon Sep 17 00:00:00 2001 From: NguyenND Date: Fri, 13 Feb 2026 16:26:41 -0500 Subject: [PATCH] Update app's listen port to match production --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index c045901..395a036 100644 --- a/app.py +++ b/app.py @@ -1312,7 +1312,7 @@ if __name__ == '__main__': # Run the app debug_mode = os.environ.get('FLASK_DEBUG', 'true').lower() == 'true' - port = int(os.environ.get('PORT', 5000)) + port = int(os.environ.get('PORT', 9000)) logger.info(f"Starting QBO Excel Sync Web App on port {port} (debug={debug_mode})") app.run(host='0.0.0.0', port=port, debug=debug_mode) \ No newline at end of file