Erlang / Elixir mixed projects - can I use mix or fixtures?

For Erlang code I use rebar . For Elixir code, I use the built-in mix tool.

Now I want to have a mixed Erlang / Elixir project. Can I use armature to compile Elixir code? Or can I use mix to compile Erlang code?

If so, how?

+6
source share
1 answer

Mix can compile erlang files if you put them in src . There is a rebar_elixir_plugin for compiling Elixir code from the rebar, but it is not as efficient as Mix.

+7
source

Source: https://habr.com/ru/post/957378/


All Articles