Reputation: 11
We can create application using rebar as below:
rebar create-app appid=demo
But when execute rebar3 create-app appid=demo
in shell, an exception occurred as below:
➜ transaction_publish_service git:(master) rebar3 create-app appid=mqttcli
===> Command 'create-app' not found
So, if create-app
was removed in rebar3, which command can replace it?
Upvotes: 1
Views: 209
Reputation: 20993
The equivalent in rebar3 is new
. Use
rebar3 new app demo
More information about this can be found in documentation.
Upvotes: 1