Initial commit

This commit is contained in:
2026-03-25 11:37:46 -04:00
commit dfdbb54875
41 changed files with 5079 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import os
from app import create_app, socketio
app = create_app(os.environ.get('FLASK_ENV', 'production'))
if __name__ == '__main__':
socketio.run(app, host='0.0.0.0', port=5000, debug=app.debug)