13 lines
254 B
Django/Jinja
13 lines
254 B
Django/Jinja
# Environment variables for {{ app_name }}
|
|
|
|
{% for key, value in app_env.items() %}
|
|
{{ key }}={{ value }}
|
|
{% endfor %}
|
|
|
|
# Deployment info
|
|
DEPLOYED_AT={{ ansible_date_time.iso8601 }}
|
|
DEPLOYED_BY=ansible
|
|
SERVER_NAME={{ inventory_hostname }}
|
|
|
|
APP_PORT=8000
|