-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Return to using Waitress WSGI server.
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |