https://github.com/ryanwinchester/runtime_config
Elixir load config at runtime
https://github.com/ryanwinchester/runtime_config
elixir elixir-lang elixir-library
Last synced: 9 months ago
JSON representation
Elixir load config at runtime
- Host: GitHub
- URL: https://github.com/ryanwinchester/runtime_config
- Owner: ryanwinchester
- Created: 2017-06-27T22:22:27.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-27T22:39:55.000Z (almost 9 years ago)
- Last Synced: 2025-07-12T21:42:13.054Z (12 months ago)
- Topics: elixir, elixir-lang, elixir-library
- Language: Elixir
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RuntimeConfig
Load config values at runtime and can handle config values like `{:system, "ENV_NAME"}`.
## Installation
The package can be installed by adding `runtime_config` to your list of
dependencies in `mix.exs`:
```elixir
def deps do
[
{:runtime_config, "~> 0.1.0"},
]
end
```
## Usage
```elixir
my_val = Config.get_env(:my_app, :my_key)
```