public-health-ch/Procfile

4 lines
205 B
Plaintext
Raw Normal View History

2017-03-27 22:32:08 +00:00
# web: uwsgi --http :$PORT --module=publichealth.wsgi:application --master --offload-threads 3
2017-03-27 22:43:55 +00:00
web: gunicorn publichealth.wsgi:application -b 0.0.0.0:$PORT -w 5 --log-file=-
2017-03-27 15:28:40 +00:00
init: python manage.py migrate