1

我们可以使用 rebar 创建应用程序,如下所示:

rebar create-app appid=demo

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

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

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

4

1 回答 1

1

rebar3 中的等价物是new. 利用

rebar3 new app demo

有关这方面的更多信息可以在文档中找到。

于 2019-12-12T08:32:08.853 回答