Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save binarytemple/343144bd22131c07b940f6557b81305a to your computer and use it in GitHub Desktop.
Save binarytemple/343144bd22131c07b940f6557b81305a to your computer and use it in GitHub Desktop.

Print all application properties for an Elixir application (run from within iex -S mix)

Enum.each(Application.loaded_applications, fn({x,_,_}) -> IO.puts "#{x} #{inspect Application.get_all_env(x)}" end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment