mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-14 09:03:33 -05:00
Expose application as a variable
This is what Gunicorn is looking for when it’s running the app. Renaming this variable to `app` has caused the app to break once deployed on PaaS. This commit also renames `app` to `flask_app` to make it clear which app is wrapping which other app.
This commit is contained in:
@@ -9,7 +9,8 @@ PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
|
|||||||
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'app', 'static')
|
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'app', 'static')
|
||||||
STATIC_URL = 'static/'
|
STATIC_URL = 'static/'
|
||||||
|
|
||||||
app = Flask('app')
|
flask_app = Flask('app')
|
||||||
|
|
||||||
create_app(app)
|
create_app(flask_app)
|
||||||
app.wsgi_app = WhiteNoise(app.wsgi_app, STATIC_ROOT, STATIC_URL, max_age=WhiteNoise.FOREVER)
|
|
||||||
|
application = WhiteNoise(flask_app.wsgi_app, STATIC_ROOT, STATIC_URL, max_age=WhiteNoise.FOREVER)
|
||||||
|
|||||||
Reference in New Issue
Block a user