1
votes

How to make release using rebar without erts included in?

3
I created example project to show how to build erlang application without erts: sinnus.blogspot.com/2012/01/… - Kirill Trofimov

3 Answers

1
votes

A release is a self packaged erlang runtime within your application, so i think you just can't.

But you can simply give your application directory with the ebin directory in it as a release.

1
votes

rebar is a good thing for managing your Erlang prjects indeed. But there are always other options which comes for Erlanf/OTP in the box. Here you can read very good tutorial about other options: http://learnyousomeerlang.com/release-is-the-word

p.s. I think it is worth knowing how the same thing could be done in other way.

-1
votes

Relx is very good at packaging Erlang releases with lots of options, one being what you want: {include_erts, false}.

https://github.com/erlware/relx