Update app's listen port to match production

This commit is contained in:
2026-02-13 16:26:41 -05:00
parent c8211600ec
commit da41509840
+1 -1
View File
@@ -1312,7 +1312,7 @@ if __name__ == '__main__':
# Run the app # Run the app
debug_mode = os.environ.get('FLASK_DEBUG', 'true').lower() == 'true' 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})") 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) app.run(host='0.0.0.0', port=port, debug=debug_mode)