Skip to content

Commit

Permalink
Return to using Waitress WSGI server.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffbr13 committed Oct 15, 2017
1 parent 45542f0 commit 0060813
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
web: python br_rss/manage.py collectstatic --noinput; python br_rss/manage.py migrate --noinput; gunicorn --chdir=br_rss --bind=0.0.0.0:$PORT br_rss.wsgi:application
web: cd br_rss; python manage.py collectstatic --noinput; python manage.py migrate --noinput; waitress-serve --port=$PORT br_rss.wsgi:application
worker: python -u br_rss/manage.py run_huey
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Django~=1.11.5
django-environ~=0.4.4
django-extensions~=1.9.1
gunicorn~=19.7.1
huey~=1.4.1
iso8601~=0.1.12
psycopg2~=2.7.3
pytz==2017.2
redis~=2.10.6
requests~=2.18.4
waitress~=1.0.2
whitenoise~=3.3.0

0 comments on commit 0060813

Please sign in to comment.