https://github.com/crispmark/vipex
https://github.com/crispmark/vipex
configuration configuration-by-environment elixir
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/crispmark/vipex
- Owner: crispmark
- Created: 2017-12-20T00:27:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-26T17:59:30.000Z (over 8 years ago)
- Last Synced: 2025-10-21T15:53:46.880Z (8 months ago)
- Topics: configuration, configuration-by-environment, elixir
- Language: Elixir
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vipex
[](https://circleci.com/gh/crispmark/vipex)
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
```elixir
def deps do
[
{:vipex, "~> 0.1.0"}
]
end
```