12 lines
192 B
Python
12 lines
192 B
Python
"""
|
|
WSGI Entry Point for Gunicorn
|
|
Used for production deployments
|
|
"""
|
|
from app import create_app, database
|
|
|
|
app = create_app()
|
|
database.init_app(app)
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|