From 73ab0e7afc64f8a9c3cef89a739cc0e1605b11bd Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 20:49:03 +0000 Subject: [PATCH] Initial upload with full project structure --- app/examples/simple.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/examples/simple.yaml diff --git a/app/examples/simple.yaml b/app/examples/simple.yaml new file mode 100644 index 0000000..5a47faf --- /dev/null +++ b/app/examples/simple.yaml @@ -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 %}