13 lines
312 B
Python
13 lines
312 B
Python
"""
|
|
wsgi.py — Gunicorn entry point for VideoPress.
|
|
|
|
Start the production server with:
|
|
gunicorn -c gunicorn.conf.py wsgi:application
|
|
|
|
The variable must be named 'application' (or 'app') — Gunicorn looks for
|
|
a WSGI callable at this module level.
|
|
"""
|
|
|
|
from app import create_app
|
|
|
|
application = create_app()
|