-- myproject
rebar.config
app.config
|-- apps
|-- myapp
|--src
...
|--test
myapp_SUITE.erl
|-- deps
|-- dep1
|-- dep2
|-- ..._______________________________________________
erlang-questions mailing list
erlang-q...@erlang.org
http://erlang.org/mailman/listinfo/erlang-questions
Hi Roberto,
What about adding the app(s) to your appname.rel script in release/x.y.z and then using systools:make_script to generate the boot script.
That seems to work for me, anyway
-Jesse
--
Jesse Gumm
Owner, Sigma Star Systems
414.940.4866 || sigma-star.com || @jessegumm
{ok, Config} = file:consult(File),
[application:set_env(myapp, K, V) | {K, V} <- Config].
Not tested.
Config might have to be [Config], you should try this out.
--
Motiejus Jakštys
~p
> _______________________________________________
> erlang-questions mailing list
> erlang-q...@erlang.org
> http://erlang.org/mailman/listinfo/erlang-questions
>
--
~p