Refactor project structure

Add version, multiple configs and pyproject
This commit is contained in:
2023-06-11 18:09:00 +02:00
parent 51040577fc
commit 869ba82695
58 changed files with 167 additions and 35 deletions

5
run.py Normal file → Executable file
View File

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