refactor: introduce app factory + blueprints (auth, core, admin users, invite); add utils and wsgi entrypoint; keep legacy routes for now

This commit is contained in:
2025-09-04 14:25:39 +03:00
parent d54e12123b
commit a3d4fbb31d
9 changed files with 566 additions and 0 deletions

7
wsgi.py Normal file
View File

@@ -0,0 +1,7 @@
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True)