This is an example of ${VAR} interpolation.
title = "Example"title: "Example"The configuration files (TOML and YAML) should be validated against a schema to ensure correctness.
The CLI tool loads its configuration from a file named .cli-tool.yaml in the current working directory. This file should contain the configuration options for the tool.
Example .cli-tool.yaml file:
# .cli-tool.yaml
option1: value1
option2: value2The CLI tool will read the configuration file and use the values to configure the tool. If the configuration file is not found, the tool will use default values.
- When using the
dry-runmode, the tool will simulate actions without making any changes to the system. - The
.cachedirectory is used to store temporary data and can be safely deleted if needed. - When merging nested dictionaries, the CLI tool will recursively merge the values, with values from the latter dictionary taking precedence over the former.
We welcome contributions! Please see our CONTRIBUTING.md file for more information.