phanikumar ch
phanikumar ch

Reputation: 75

Is there plugin path customizations available for rebar3?

I am looking to add my custom projects as plugins in rebar3.config. is it possible to fetch plugins locally or does it have to be from hex.pm?

Upvotes: 2

Views: 129

Answers (1)

vkatsuba
vkatsuba

Reputation: 1449

Can be also used path from GitHub:

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

Upvotes: 1

Related Questions