Popularity
7.4
Declining
Activity
4.2
-
99
15
47

Monthly Downloads: 757,745
Programming language: Erlang
License: Apache License 2.0
Tags: Package Management    
Latest version: v6.10.2

rebar3_hex alternatives and similar packages

Based on the "Package Management" category.
Alternatively, view rebar3_hex alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of rebar3_hex or a related project?

Add another 'Package Management' Package

README

rebar3 Hex Providers

Providers for interacting with the Erlang package manager hex.pm.

Usage

Add to your global rebar3 config in ~/.config/rebar3/rebar.config:

{plugins, [rebar3_hex]}.

Usage

Authenticating User

If you already have a user for hex.pm run:

$ rebar3 hex user auth

Note that this will ask for your hex.pm username and password, as well as a password for encrypting your api token that has write permissions to the repository. When publishing a package you will have to give this password to decrypt the token in order to publish.

Private Organizations

Private organizations are treated as repositories that have a parent. The parent is found as the first part of a repository's name, separated from the organization by a :. So for an organization rebar3 on the main repository hexpm the name must be hexpm:rebar3.

~/.config/rebar3/rebar.config

{hex, [{repos, [
        #{name => <<"hexpm:rebar3">>}
      ]}]}.

Read-Only Repo Key for CI

If you have a private organization or other private repository it is recommended that you use a repo specific auth token for reading from the repository in CI. To generate a token:

$ rebar3 hex repo auth <repo> generate
Generated key: abc123

Then in CI use whatever method is available for setting an environment variable to the token and add this call at the beginning of your CI runs to add the token to your rebar3 hex tokens:

$ rebar3 hex repo auth <repo> --key $REPO_KEY

Publishing Packages

Two functions are available for publishing applications to hex as packages. The first, hex publish, simply packages up what you have as is:

$ rebar3 hex publish

Note that it will display the details of what it is publishing (what files, the version, dependencies) and ask if it should continue, so be sure to read the output carefully and make sure it is publishing what you expected.

Another task, hex cut is available to provide some additional functionality around versioning and git tags:

$ rebar3 hex cut

This command will ask how to increment (major, minor, patch) the version number based on the last version and can create a git tag and push that tag upstream.

Publishing Docs

$ rebar3 hex docs

Adding and Removing Owners of Packages

Owners can be added and removed for packages you are an owner of with the hex owner command:

$ rebar3 hex owner [add | remove] <package> <email>