如何在Shell中使用rebar3创建Erlang应用程序?

时间:2019-12-12 05:36:12

标签: erlang rebar3

我们可以使用如下所示的钢筋创建应用程序:

rebar create-app appid=demo

但是在shell中执行rebar3 create-app appid=demo时,发生了如下异常:

➜  transaction_publish_service git:(master) rebar3 create-app appid=mqttcli  
===> Command 'create-app' not found

那么,如果在rebar3中删除了create-app,哪个命令可以代替它?

1 个答案:

答案 0 :(得分:1)

rebar3中的等效项是new。使用

rebar3 new app demo

有关更多信息,请参见documentation