added confused dashboard

This commit is contained in:
2025-05-13 04:03:43 +02:00
parent d4d7f485a7
commit b86f0a1e14
5 changed files with 109 additions and 7 deletions

4
run.py
View File

@@ -1,6 +1,6 @@
from app import create_app
from app import create_app, socketio
app = create_app()
if __name__ == '__main__':
app.run()
socketio.run(app, port=5002, debug=True)