Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 526 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 526 Bytes

Vipex

CircleCI

Intended to replicate go's viper solution for combining configuration with environment overrides.

The following hierarchy is used for precedence

  • explicit call to Application.put_env
  • flag (not implemented)
  • env
  • config
  • key/value store (not implemented)
  • default

Installation

def deps do
  [
    {:vipex, "~> 0.1.0"}
  ]
end