作者:JohnBeanLee | 来源:互联网 | 2023-05-18 19:27
1.创建一个项目文件夹:mkdirmyappcdmyapp2.下载rebar的二进制文件到这个项目的文件夹。gitclonehttps:github.combashor
1.创建一个项目文件夹:
2.下载rebar的二进制文件到这个项目的文件夹。
git clone https://github.com/basho/rebar.git;
3.使用rebar模板系统构建我们工程的“骨架”。
rebar creat-app appid=myapp
这条命令执行后会在项目文件中产生一个子文件夹“src”,其包含三个文件:
myapp.app.src:otp应用程序的资源文件
myapp_app.erl:一个OTP应用程序的Application behaviour
myapp_sup.erl:一个OTP应用程序的Supervisor behaviour
4.编译工程
执行完之后会产生一个ebin文件夹,在ebin下会生成与src文件夹下源文件对应的beam文件。同时,rebar会根据myapp.app.src动态生成一个合适OTP项目资源文件。
另外,rebar clean可以清除编译的beam文件
5.添加常用依赖
在工程目录下(与src文件夹在同一目录),新建rebar.config文件,文件内容如下:
{erl_opts, [debug_info,{parse_transform, lager_transform}]}.
{deps, [
{lager_amqp_backend, ".*", {git, "https://github.com/jbrisbin/lager_amqp_backend.git", "master"}},
{amqp_client, ".*", {git, "https://github.com/jbrisbin/amqp_client.git", {tag,"rabbitmq_2.7.0"}}},
{ranch, ".*", {git, "https://github.com/ninenines/ranch.git", {tag,"1.1.0"}}},
{protobuffs, ".*", {git, "git://github.com/basho/erlang_protobuffs.git", master}}
]
}.
之后运行,rebar get-deps即可生成deps文件夹,完成基本创建。
ps:纯属个人学习笔记,如有不足请指出,谢谢!