我是erlang/cowboy的新手,现在使用rebar3,因为99的牛仔正在使用其自己的erlang.mk系统,如何使用rebar3来构建牛仔release?先感谢您。

最佳答案

使用new命令创建您的项目。

$ rebar3 new app yourapp

然后在项目路径中找到rebar.config文件,并在cowboy键下添加deps作为依赖项:
{deps,
    [{cowboy, {git, "git://github.com/ninenines/cowboy.git", {tag, "1.0.1"}}}]}.

然后使用compile命令rebar3获取定义的依赖项,并对它们以及您的应用程序进行编译。
rebar3 compile

在制作release的最后,您首先需要创建您的发行结构,然后使用以下命令进行发行。
$ rebar3 new release yourrel
$ rebar3 release

请注意,Rebar3的basic usage example在细节上与牛仔有关。

关于erlang - 如何使用rebar3设置牛仔,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35147684/

10-13 02:06