move app to gatehouse-app

This commit is contained in:
2026-01-15 03:40:29 +10:30
parent 5e4cffcf73
commit 2c0aaf484b
69 changed files with 1569 additions and 294 deletions
+5 -2
View File
@@ -6,10 +6,13 @@ from dotenv import load_dotenv, find_dotenv
load_dotenv(find_dotenv())
import os
from app import create_app
from gatehouse_app import create_app
# Create application instance
app = create_app(os.getenv("FLASK_ENV", "development"))
application = create_app(os.getenv("FLASK_ENV", "development"))
# For backwards compatibility
app = application
if __name__ == "__main__":
app.run()