How to Package an Erlang App?
What is the idiomatic way of packaging 开发者_如何学Goerlang modules/app? For example, in Java there two options: jar
or war
depending on deployment target.
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.
精彩评论