| Crates.io | holoconf-cli |
| lib.rs | holoconf-cli |
| version | 0.4.0 |
| created_at | 2026-01-09 06:35:28.736334+00 |
| updated_at | 2026-01-19 23:45:32.583291+00 |
| description | Command-line interface for holoconf configuration management |
| homepage | |
| repository | https://github.com/rfestag/holoconf |
| max_upload_size | |
| id | 2031689 |
| size | 84,931 |
Command-line interface for holoconf configuration management.
cargo install holoconf-cli
Or download pre-built binaries from the GitHub Releases.
holoconf get database.host --config config.yaml
# Output as YAML (default)
holoconf dump --config config.yaml
# Output as JSON
holoconf dump --config config.yaml --format json
holoconf dump --config base.yaml --config override.yaml
holoconf validate --config config.yaml --schema schema.json
Given a config.yaml:
database:
host: ${env:DB_HOST,localhost}
port: 5432
url: postgresql://${.host}:${.port}/mydb
$ export DB_HOST=prod-db.example.com
$ holoconf get database.url --config config.yaml
postgresql://prod-db.example.com:5432/mydb
holoconf-core - Core libraryLicensed under either of Apache License, Version 2.0 or MIT license at your option.