Packages

Trello REST client for Erlang/OTP

Current section

Files

Jump to
trellang rebar.config
Raw

rebar.config

{erl_opts, [debug_info]}.
{deps, []}.
%% Use project_plugins so downstream users don't need plugins installed
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
%% ExDoc configuration
{ex_doc, [
{extras, ["README.md"]},
{main, "README.md"},
{source_url, "https://github.com/stritzinger/trellang"}
]}.
%% Hex: build & upload docs to HexDocs when publishing
{hex, [{doc, ex_doc}]}.
%% relx release skeleton for local runs
{relx, [
{release, {trellang, semver}, [trellang]}
]}.
{shell, [
%% {config, "config/sys.config"},
{apps, [trellang]}
]}.