Confsul
Configure your Elixir apps using Consul
Installation
Add :confsul to your list of dependencies in mix.exs:
def deps do
[{:confsul, "~> 0.1.2"}]
endConfiguration
Set your Consul client configuration in the config.exs
config :consul,
host: "consul",
port: 8500Set the Consul folder where your keys are in the config.exs
config: :app_name,
config_folder: "/path/"Use
Load the config process using your app name
Confsul.Config.start(:app_name)