9 lines
158 B
Python
9 lines
158 B
Python
"""
|
|
WSGI entry point for production deployment
|
|
Use with Gunicorn: gunicorn wsgi:app
|
|
"""
|
|
from app import app
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|