Skip to content

crispmark/vipex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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