Files
2026-06-15 11:23:05 -04:00

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()