Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save martin-langhoff/5d16a2e08bdb7ef950526cce83bc9e27 to your computer and use it in GitHub Desktop.
Save martin-langhoff/5d16a2e08bdb7ef950526cce83bc9e27 to your computer and use it in GitHub Desktop.
Read in sys.config in an Elixir Release under 'console_clean'
# Read sys.config as in a normal start
{ :ok, [ conf ] } = :file.consult('/path/to/running-config/sys.config')
Enum.each(conf, fn({k, v}) ->
Enum.each(v, fn({sk, sv}) ->
Application.put_env(k, sk, sv)
end)
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment