What's Changed
- adds -s/--set command option for setting values
- adds -e short option for --encrypt
- adds Env write and bake methods
- fixes --keygen output when writing to a file
- resolves issue 25
- fixes support for :- modifier
- bumps version to 0.8.4
python
>>> env = Env({"FOO": "${BAR}", "BAR": "bar"})
>>> env.write("foo.env")
To create a new foo.env file with FOO:bar with encrypted values:
shell
$ envstack -s FOO:bar -eo foo.env
**Full Changelog**: https://github.com/rsgalloway/envstack/compare/0.8.3...0.8.4