sjac
sjac

Reputation: 2849

How to Package an Erlang App?

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

Answers (1)

Roberto Aloi
Roberto Aloi

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

Related Questions