Push to Gitea ๐Ÿš€

This commit is contained in:
2025-11-06 07:54:23 +01:00
parent a3bb1b3dd6
commit e39470e126
22 changed files with 2633 additions and 0 deletions

9
wsgi.py Normal file
View File

@@ -0,0 +1,9 @@
"""WSGI entry point for production deployment."""
from flask import Flask
from flado.app import create_app
app: Flask = create_app()
if __name__ == "__main__":
app.run()