From c3a025afe42d5e6cdee013c1000a096adfd3cdb5 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 07:10:18 +0000 Subject: [PATCH] Initial upload: ConfDoc v0.1.0 - Config validation and documentation generator --- examples/config.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 examples/config.json diff --git a/examples/config.json b/examples/config.json new file mode 100644 index 0000000..01f2605 --- /dev/null +++ b/examples/config.json @@ -0,0 +1,16 @@ +{ + "app": { + "name": "myapp", + "version": "1.0.0", + "debug": true + }, + "database": { + "host": "localhost", + "port": 5432, + "name": "mydb" + }, + "logging": { + "level": "INFO", + "file": "app.log" + } +}