Initial upload with full project structure

This commit is contained in:
2026-02-01 20:49:03 +00:00
parent 008629d7b3
commit 73ab0e7afc

17
app/examples/simple.yaml Normal file
View File

@@ -0,0 +1,17 @@
app_name: {{APP_NAME}}
version: {{VERSION}}
debug: {{DEBUG}}
database:
host: {{DB_HOST}}
port: {{DB_PORT}}
name: {{DB_NAME}}
cache:
enabled: {{USE_CACHE | default(True)}}
ttl: {{CACHE_TTL | default(300)}}
features:
{% for feature in FEATURES %}
- {{feature}}
{% endfor %}