first commit
This commit is contained in:
15
api/wsgi.py
Normal file
15
api/wsgi.py
Normal 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)
|
||||
Reference in New Issue
Block a user