1

We can create application using rebar as below:

rebar create-app appid=demo

But when execute rebar3 create-app appid=demoin 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?

Marco Wang
  • 11
  • 1

1 Answers1

1

The equivalent in rebar3 is new. Use

rebar3 new app demo

More information about this can be found in documentation.

Wojtek Surowka
  • 20,535
  • 4
  • 44
  • 51