rebar的问题
1、如果管理LoadGen、SimpleGen、HTTP、XMPP等多个application间的关系
2、如何制作成一个独立的节点/rel?
https://github.com/basho/rebar/wiki/Release-handling
reltool.config
这几个app分开使用rebar管理;
针对LoadGen/SimpleGen管理ReleaseHandling:
1、创建rel,rebar create-node...修改rel.config,让reltool能找到app
2、修改rebar.config,把rel目录包含进去
3、rebar compile generate,生成rel中的node
LoadGen需要做相应的修改
LoadGen/SimpleGen作为application
HTTP、XMPP等分别作为Application,依赖于LoadGen
3、dialyze在旧版本中支持,在新版本中不支持了?
把dialyzer(https://github.com/andrzejsliwa/rebar_dialyzer_plugin)作为deps放在工程中即可
直接编译出新的rebar,使用即可。(遇到了错误,需要设置HOME环境变量,以便找到默认的plt)
附件。
4、怎么使用rebar中的basicnif、simplefsm、simplemod等模块??
http://cryolite.iteye.com/blog/1159448
rebar create template=basicnif module=dragon