# run.py
from app.main import createApp
app, socketio = createApp()
if __name__ == "__main__":
socketio.run(app, host="0.0.0.0", port=5000, debug=True)