remove wsgi.py - always serve with whitenoise

We're now running our app as a wsgi app locally, so don't need to
distinguish between the two processes by having wsgi and application.py
whitenoise just serves static files nicely - we don't lose anything
by doing that locally.
This commit is contained in:
Leo Hemsted
2017-11-07 11:50:13 +00:00
parent 0535702707
commit 2cd77e628e
5 changed files with 11 additions and 33 deletions

View File

@@ -1,7 +1,7 @@
---
buildpack: python_buildpack
command: scripts/run_app_paas.sh gunicorn -w 5 -b 0.0.0.0:$PORT wsgi
command: scripts/run_app_paas.sh gunicorn -w 5 -b 0.0.0.0:$PORT application
services:
- notify-aws
- notify-config