首页 > 解决方案 > 是否有可用于 rebar3 的插件路径自定义?

问题描述

我希望将我的自定义项目作为插件添加到 rebar3.config 中。是否可以在本地获取插件还是必须来自 hex.pm?

标签: erlangrebar3

解决方案


也可以使用路径GitHub

{plugins, [
    {your_plugin, 
        {git, "https://github.com/path-to/your_plagin.git", 
        {branch, "your-branch"}}
    }
]}.

推荐阅读