Created
August 23, 2016 22:04
-
-
Save martin-langhoff/5d16a2e08bdb7ef950526cce83bc9e27 to your computer and use it in GitHub Desktop.
Read in sys.config in an Elixir Release under 'console_clean'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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