| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Deep Environmental Configuration
dec builds arbitrarily nested data structures from simple KV strings.
Env vars are constrained to simple key value pairs, yet they are ubiquitous. Docker config and 12 Factor Config in particular rely on this traditional mechanism. But modern apps often require more complex data structures, to wit: maps and lists.
dec exposes two primary functions: explode and enflat. They are inverses of eachother, such that identity == (comp explode enflat), i.e.:
(let [nested {:foo {:bar [:baz :qux]}}]
(= nested (explode (enflat nested))))
;;=> trueAssume our env looks like:
export DEC_HOSTS_0=a.host.com
export DEC_HOSTS_1=b.host.com
export DEC_LEVEL=debugThen we we obtain some env vars via environ, as one does, filter by a known prefix, and explode the results:
(require
'[environ.core :refer [env]]
'[dec :refer [explode]])
(explode (into {} (filter (fn [[k v]] (.startsWith (name k) "dec")) env)))
{:dec {:hosts ["a.host.com" "b.host.com"], :level "debug"}}A little simpler, without the env:
(explode
{:dec-level "debug"
:dec-hosts-0 "a.host.com"
:dec-hosts-1 "b.host.com"})
{:dec {:hosts ["a.host.com" "b.host.com"], :level "debug"}}Environ is not required, nor is it a dependency of dec; I'm using it as an example of a common way to obtain environmental configuration.
dec optionally takes a delimiter parameter:
(explode {:dec.hosts.0 "a.host.com"
:dec.hosts.1 "b.host.com"
:dec.level "debug"}
{:delimiter "."})
{:dec {:hosts ["a.host.com" "b.host.com"], :level "debug"}}lein test
lein cloverage
lein kibit lein eastwood
Copyright © 2016 Trevor C. Hartman
Distributed under the Eclipse Public License either version 1.0 or any later version.
| Back | FazBrowse Home | New Git URL |