Initial commit

This commit is contained in:
Julian Rother 2025-01-09 20:39:34 +01:00
commit 9235c2011e
Signed by: julian
GPG key ID: C19B924C0CD13341
5 changed files with 125 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{% for section_name, section in forgejo_config.items() %}
{% if section_name != 'DEFAULT' %}
[{{section_name}}]
{% endif %}
{% for key, value in section.items() %}
{{key}} = {{value}}
{% endfor %}
{% endfor %}