restore access to flask shell

This commit is contained in:
2023-06-13 00:04:08 +02:00
parent b3afd580e0
commit d4d61cfd36
2 changed files with 6 additions and 4 deletions

2
run.py
View File

@@ -1,5 +1,5 @@
#!/usr/bin/env python
from beflask import app
socketio, app = app.create_app()
socketio, app = app.create_app(return_socketio=True)
socketio.run(app, debug=app.config["DEBUG"])