Hello,
is there a way to set the application env per rebar3 profile?
Something like, in rebar.config
:
{profiles, [{default, [{myapp, [{env, [{foo, bar}]}]}]}
,{staging, [{myapp, [{env, [{foo, baz}]}]}]}
]}.
How can I achieve something like that?
Cheers!