This commit is contained in:
Jason
2026-04-11 00:04:09 -05:00
commit 7a2fffd62e
110 changed files with 51809 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
"""
WSGI entry point for production deployment
Use with Gunicorn: gunicorn wsgi:app
"""
from app import app
if __name__ == "__main__":
app.run()