mirror of https://github.com/fspc/workstand.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
326 B
11 lines
326 B
[group:{{ app_name }}]
|
|
programs=django
|
|
[program:django]
|
|
command={{ venv }}/bin/gunicorn -b 127.0.0.1:{{ app_port }} --reload {{ app_name }}.wsgi:application
|
|
directory={{ app_dir }}
|
|
environment=DJANGO_SETTINGS_MODULE="{{ settings_module }}"
|
|
autostart=true
|
|
autorestart=true
|
|
redirect_stderr=true
|
|
user=vagrant
|
|
startretries=100000
|
|
|