Initial commit: Quality App v2 - FG Scan Module with Reports

This commit is contained in:
Quality App Developer
2026-01-25 22:25:18 +02:00
commit 3c5a273a89
66 changed files with 15368 additions and 0 deletions

11
wsgi.py Normal file
View File

@@ -0,0 +1,11 @@
"""
WSGI Entry Point for Gunicorn
Used for production deployments
"""
from app import create_app, database
app = create_app()
database.init_app(app)
if __name__ == '__main__':
app.run()