first commit

This commit is contained in:
2025-11-24 23:10:55 -06:00
commit 8315fa51c9
279 changed files with 74600 additions and 0 deletions

15
api/wsgi.py Normal file
View File

@@ -0,0 +1,15 @@
"""
WSGI entry point for Code of Conquest.
Used by production WSGI servers like Gunicorn.
"""
from app import create_app
# Create application instance
app = create_app()
if __name__ == "__main__":
# For development only
# In production, use: gunicorn wsgi:app
app.run(debug=True)