Last active
May 3, 2020 04:05
-
-
Save dantswain/fdfb1c2c86e4d940a8f5 to your computer and use it in GitHub Desktop.
Convert Elixir config.exs to Erlang sys.config
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
#!/usr/bin/env elixir | |
# Convert an Elixir config.exs to an erlang sys.config | |
# | |
# Usage: elixir_to_sys_config config.exs > sys.config | |
# First argument is the Elixir config.exs file | |
# Writes to stdout | |
# You probably want to set MIX_ENV accordingly | |
# | |
# 2015 by Dan Swain, [email protected] | |
defmodule ConfigConverter do | |
@usage """ | |
USAGE: elixir_to_sys_config prod.exs > sys.config | |
Generate Erlang-style sys.config from Elixir-style prod.exs | |
""" | |
def convert([path]) do | |
convert(path, File.exists?(path)) | |
end | |
def convert(_) do | |
{:error, @usage} | |
end | |
defp convert(path, false) do | |
msg = "Error: Could not find #{inspect path}\n\n" <> @usage | |
{:error, msg} | |
end | |
defp convert(path, true) do | |
config = Mix.Config.read!(path) | |
{:ok, :io_lib.format('~p.~n', [config]) |> List.to_string} | |
end | |
end | |
case ConfigConverter.convert(System.argv) do | |
{:ok, output} -> | |
IO.puts output | |
{:error, msg} -> | |
IO.puts :stderr, msg | |
System.halt(1) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment