Delete unused files, restructure assets and use scss

This commit is contained in:
Patrick Jentsch
2022-02-15 09:25:34 +01:00
parent 585a6ba796
commit 15e897f005
45 changed files with 390 additions and 747 deletions

View File

@ -37,7 +37,9 @@ def create_app(config: Config = Config) -> Flask:
migrate.init_app(app, db)
paranoid.init_app(app)
socketio.init_app(
app, message_queue=app.config['NOPAQUE_SOCKETIO_MESSAGE_QUEUE_URI'])
app,
message_queue=app.config['NOPAQUE_SOCKETIO_MESSAGE_QUEUE_URI']
)
from .events import socketio as socketio_events
from .events import sqlalchemy as sqlalchemy_events