Files
Code_of_Conquest/api/wsgi.py
2025-11-24 23:10:55 -06:00

16 lines
296 B
Python

"""
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)