Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to manage third-party erlang applications?

Tags:

erlang

How do you manage erlang applications that are not part of the Erlang/OTP release ? Where do you usually install them ? If you install them aside of Erlang/OTP release, how do you tell erlang VM where to look them up (Yes, I know about -pz flag but it seems to be a little awkward for me to use that flag when there are more than one third-party apps)

like image 941
Konstantin Avatar asked Oct 14 '22 09:10

Konstantin


1 Answers

I use the ERL_LIBS environment variable to point out where I have my applications installed.

See "Code Path" under http://www.erlang.org/doc/man/code.html

like image 159
Christian Avatar answered Oct 18 '22 04:10

Christian