In case anyone is interested:
- Add
erlogto yourmix.exsfile, in theapplication/0public function. Example:
def application do
[applications: [:logger, :erlog]]
end
- Add
erlogto yourmix.exsfile, in thedeps/0private function. Example:
defp deps do
[
{:erlog, github: "rvirding/erlog"}
]
- Command line: run
mix deps.get - Command line: run
mix deps.compile - Command line: run
iex -S mix - You should be able to invoke
:erlog,:erlog_server,:erlog_shelletc. functions from inside the IEx shell (there are 16 modules actually)
@AstonJ Not sure if that’s worthy of a Wiki, you decide.
@rvirding / @josevalim For your reference. Looks like if the Erlang project is “done right” (example for “not done right” here: Using Erlang library with Elixir - Stack Overflow), it’s a pretty straightforward process.






















