CHECKOK
This commit is contained in:
15
wsgi.py
Normal file
15
wsgi.py
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
WSGI entrypoint for production (Gunicorn)
|
||||
|
||||
This creates the Flask application via the application factory in app/__init__.py,
|
||||
so we avoid importing the top-level app.py to prevent name clashes with the
|
||||
package module name "app".
|
||||
"""
|
||||
|
||||
from app import create_app
|
||||
|
||||
app = create_app()
|
||||
|
Reference in New Issue
Block a user