This commit is contained in:
2025-11-16 22:14:53 -05:00
parent 6c3aa6d257
commit 90ef1bbba2
11 changed files with 420 additions and 19 deletions

View File

@@ -0,0 +1,10 @@
# {{ ansible_managed }}
{% if project.env is defined %}
{% for key, value in project.env.items() %}
{% if value is boolean %}
{{ key }}={{ value | lower }}
{% else %}
{{ key }}={{ value }}
{% endif %}
{% endfor %}
{% endif %}