feat(app): refactor to app-factory; add application package and routes

This commit is contained in:
Albert
2025-12-21 22:22:07 +01:00
parent 86be10af8c
commit 15c629a5e7
5 changed files with 167 additions and 138 deletions

View File

@@ -0,0 +1,5 @@
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
db = SQLAlchemy()
migrate = Migrate()