Reputation: 2849
What is the idiomatic way of packaging erlang modules/app? For example, in Java there two options: jar
or war
depending on deployment target.
Upvotes: 4
Views: 316
Reputation: 30985
In Erlang, modules are grouped into applications. Applications are grouped into releases. How does this works? Like this.
Luckily, Rebar exists to do most of it. Rebar is probably the most commonly used tool to manage applications and releases.
Upvotes: 3