2

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?

2240
  • 1,547
  • 2
  • 12
  • 30
phanikumar ch
  • 85
  • 1
  • 1
  • 13

1 Answers1

1

Can be also used path from GitHub:

{plugins, [
    {your_plugin, 
        {git, "https://github.com/path-to/your_plagin.git", 
        {branch, "your-branch"}}
    }
]}.
vkatsuba
  • 1,411
  • 1
  • 7
  • 19