barrel-db / rebar3_elixir_compile

Elixir rebar3 compiler plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

examples needed

benoitc opened this issue · comments

we need some examples and a Getting Started doc

added example. Need a getting started doc @benoitc

What does elixir_opts do? Does the {compile, {ex, compile}} hook compile all Elixir apps?

@waisbrot elixir_opts allows you to set the paths to the elixir installation (bin and libs). Otherwise it is discovered in the PATH.

The compile hook will compile all the elixir apps and their dependencies. Elixir apps are fetched via the deps.

done. Thanks!