10 lines
218 B
Python
10 lines
218 B
Python
"""WSGI entry point. Used by Gunicorn and `flask` CLI.
|
|
|
|
export FLASK_APP=wsgi:app
|
|
flask db init / migrate / upgrade
|
|
gunicorn -c deploy/gunicorn.conf.py wsgi:app
|
|
"""
|
|
from app import create_app
|
|
|
|
app = create_app()
|