Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ostinelli/rebar3_vendor
Rebar3 Vendor Plugin.
https://github.com/ostinelli/rebar3_vendor
erlang rebar3 vendor
Last synced: 24 days ago
JSON representation
Rebar3 Vendor Plugin.
- Host: GitHub
- URL: https://github.com/ostinelli/rebar3_vendor
- Owner: ostinelli
- License: mit
- Created: 2016-03-19T03:32:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-13T08:32:52.000Z (3 months ago)
- Last Synced: 2024-10-10T04:14:29.178Z (about 1 month ago)
- Topics: erlang, rebar3, vendor
- Language: Erlang
- Homepage:
- Size: 13.7 KB
- Stars: 14
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![Hex pm](https://img.shields.io/hexpm/v/rebar3_vendor.svg)](https://hex.pm/packages/rebar3_vendor)
# Rebar3 Vendoring Plugin
Plugin for storing vendored dependencies and applying the vendored deps to your local project.
## Install
Add the plugin to your rebar config, which should be at `~/.config/rebar3/rebar.config`:```erlang
{plugins, [rebar3_vendor]}.
```## Usage
To store the fetched dependencies under `./deps/` for committing:```
$ rebar3 vendor store
```To take the vendored dependencies from `./deps/` and place them under the build directory in the appropriate place:
```
$ rebar3 vendor apply
```