Packages

Environment variable wrapper prefixing with application name

Current section

Files

Jump to
macula_envy rebar.config
Raw

rebar.config

%% -*- mode: erlang -*-
%% rebar3 configuration for macula_envy
%% Fork of shortishly/envy with rebar3 support
{erl_opts, [
debug_info,
warnings_as_errors
]}.
{deps, [
{any, "0.3.2"}
]}.
{project_plugins, [
rebar3_hex,
rebar3_ex_doc
]}.
%% Hex package configuration
{hex, [
{name, macula_envy},
{doc, #{provider => ex_doc}},
{licenses, ["Apache-2.0"]},
{links, #{
<<"GitHub">> => <<"https://github.com/macula-io/macula-envy">>,
<<"Original">> => <<"https://github.com/shortishly/envy">>
}},
{description, "Environment variable wrapper prefixing with application name (rebar3 fork of shortishly/envy)"}
]}.
{ex_doc, [
{source_url, <<"https://github.com/macula-io/macula-envy">>},
{extras, ["README.md", "CHANGELOG.md", "LICENSE"]},
{main, "README.md"}
]}.