gunicorn instead of wsgi

This commit is contained in:
Oleg Lavrovsky 2017-03-27 17:28:40 +02:00
parent 1703b9d57e
commit 531de994db

View file

@ -1 +1,3 @@
web: uwsgi --http :$PORT --module publichealth.wsgi --master --offload-threads 1
web: gunicorn publichealth.wsgi -b 0.0.0.0:$PORT -w 3 --log-file=-
init: python manage.py migrate
migrate: python manage.py migrate