Opinionated utility to load a configuration from three well defined layers into any type which can be deserialized by Serde using kebab-case.
First, values from the mandatory default configuration file at <CONFIG_DIR>/default.toml
are
loaded.
Then, if if the environment variable CONFIG_ENVIRONMENT
is defined, values from the environment
(e.g. "prod") specific configuration file at <CONFIG_DIR>/<CONFIG_ENVIRONMENT>.toml
are loaded as
an overlay, i.e. adding or overwriting already existing values.
Finally environment variables prefixed with <CONFIG_ENV_PREFIX>__
and segments separated by __
(double underscores are used as segment separators to allow for single underscores in segment names)
are used as additional overlay.
```rust
struct Config { foo: Foo, qux: Qux, }
struct Foo { bar: String, baz: String, }
struct Qux { quux_quux: String, }
fn testload() { env::setvar(CONFIGDIR, "test-config"); env::setvar(CONFIGENVIRONMENT, "dev"); env::setvar("APPQUXQUUX-QUUX", "Quux2");
let config = Config::load();
assert!(config.is_ok());
let config = config.unwrap();
assert_eq!(config.foo.bar.as_str(), "Bar");
assert_eq!(config.foo.baz.as_str(), "Baz2");
assert_eq!(config.qux.quux_quux.as_str(), "Quux2");
} ```
This utility is built on top of the fantastic Config library.
This code is open source software licensed under the Apache 2.0 License.