16 lines
296 B
Python
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)
|