First release

This commit is contained in:
2023-10-07 00:11:59 +03:00
parent b8a3f62fc7
commit 6f4efc3c51
4 changed files with 63 additions and 0 deletions

7
templates/app.ini.j2 Normal file
View File

@@ -0,0 +1,7 @@
;; {{ ansible_managed }}
{% for section, settings in gitea_config.items() %}
[{{ section }}]
{% for param, value in settings.items() %}
{{ param }} = {{ value }}
{% endfor %}
{% endfor %}