Jonke
Jonke

Reputation: 6543

Best Practice: Erlang Application Deploy on windows

When deploying a ready to use erlang application I don't want the user to

I have a couple of ideas of what could be a way but I would like to get some input.

Upvotes: 8

Views: 2477

Answers (3)

Zed
Zed

Reputation: 57678

The reltool application first released with Erlang R13B02 is aimed at solving this issue. Note that it is currently a beta release (version 0.5).

Upvotes: 2

Adam Lindberg
Adam Lindberg

Reputation: 16587

There is also Erlware.

At our core we host public repositories containing reliable Erlang OTP-compliant applications. Our repositories enable developers to use software written by the Erlang community and to publish and distribute their own software.

It's more backend orient though, so not a complete solution.

Upvotes: 2

mdb
mdb

Reputation: 52899

SAE (stand-alone Erlang) used to be a pretty good solution for situations like you describe, but that no longer seems to be maintained.

Although I've never used it myself, CEAN seems like it might come close to what you want: it offers a self-extracting installer (though not for Windows at present) and the option to deliver a customized minimal Erlang framework.

Upvotes: 2

Related Questions