I try to set up ChicagoBoss with all it's dependencies to ERL_LIBS
environment variable. I got ChicagoBoss, compiled it with ./rebar get-deps && ./rebar compile
, now i have ChicagoBoss in /home/user/ChicagoBoss
directory and it's dependencies in /home/user/ChicagoBoss/deps
directory. I want to add it to ERL_LIBS
. I put to my .bashrc
file following line:
export ERL_LIBS=/home/user/ChicagoBoss/:/home/user/*/deps/*/
But when i try something from ChicagoBoss dependencies, ranch
application for example with:
application:start(ranch).
I got error:
{error,{"no such file or directory","ranch.app"}}
Thank you.