This cli tool is intended to "compile" an ordered set of configuration files into a single, flattened representation suitable for exporting to environment variables.
For a complete list of subcommands/option (and more detailed help), see the
relevant --help
section.
```yaml
foo: bar: 10 baz: false
hoof: https://some.url ```
sh
$ confpiler build config.yaml
FOO__BAR="10"
FOO__BAZ="false"
HOOF="https://some.url"
Given some files like the following:
somedir/
global.yaml
myapp/
default.yaml
development.yaml
production.yaml
staging.yaml
We can compile to a single representation of the "production" configuration with
sh
$ cd somedir
$ confpiler build global.yaml myapp --env production --json
Which would yield a dictionary in JSON form representing merging global.yaml
,
myapp/default.yaml
and myapp/production.yaml
.
Currently this tool requires a "default" file when processing a directory.
Substituting check
for build
will just verify whether or not the
configuration could be made given the options specified.
```sh $ confpiler check global.yaml myapp --env staging
$ confpiler check global.yaml myapp --env staging --strict ```
The following formats are currently supported: