from app import create_app app = create_app() if __name__ == '__main__': app.run(debug=True, port=8782, host='0.0.0.0') # Run on port 8782 for local testing # In production, use Gunicorn with wsgi.py as the entry point with port 8781