Spaces:
Sleeping
Sleeping
| """ | |
| Application entry point - run this to start the Flask server with real-time support | |
| """ | |
| from app import create_app, socketio, db | |
| import os | |
| app = create_app(os.getenv("FLASK_ENV", "development")) | |
| if __name__ == "__main__": | |
| # Run with socketio for WebSocket support | |
| socketio.run(app, debug=True, host="0.0.0.0", port=5000, allow_unsafe_werkzeug=True) | |