Mr-TD's picture
feat: initialize 2026 Election Assistant web application with real-time tracking and comprehensive event documentation
3c4d71f
raw
history blame contribute delete
368 Bytes
"""
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)