I created a project with Rebar3 like this
rebar new release app1
I then compiled it:
rebar3 compile
Now the question is, with Rebar3, how do I start a project in development mode?
My requirements are:
Or can I only start a Rebar3 shell by hand and set the cookie?
To start the project you need to build release first. Rebar3 delegates this to relx tool. See here. As you have built release you are able to run it just as ./_build/default/bin/node_name
.