mirror of https://gitlab.com/tildes/tildes.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.
13 lines
332 B
13 lines
332 B
{% set python_version = '3.7' %}
|
|
|
|
{% set app_dir = '/opt/tildes' %}
|
|
{% set static_sites_dir = '/opt/tildes-static-sites' %}
|
|
|
|
{% set venv_dir = '/opt/venvs/tildes' %}
|
|
{% set bin_dir = venv_dir + '/bin' %}
|
|
|
|
{% if grains['id'] == 'dev' %}
|
|
{% set app_username = 'vagrant' %}
|
|
{% else %}
|
|
{% set app_username = 'tildes' %}
|
|
{% endif %}
|