Current section
Files
Jump to
Current section
Files
rebar.config
{erl_opts, [debug_info]}.
{deps, [
{jsx, "3.1.0"} % For JSON parsing
]}.
{shell, [
% {config, "config/sys.config"},
{apps, [bloodbath]},
{apps, [jsx]}
]}.
{profiles, [
{test, [
{deps, []}
]}
]}.
{licenses, [{"Apache-2.0", "https://www.apache.org/licenses/LICENSE-2.0.html"}]}.
{erlang_version, ">= 25.0"}.
{publish, [
{registry, "https://hex.pm"},
{username, "avosa"},
{api_key, "cf5e1dbc5a360972f0af354d145ef0b4"}
]}.
{plugins, [rebar3_hex]}.
{project_plugins, [rebar3_ex_doc]}.
{ex_doc, [
{source_url, <<"https://github.com/avosa/bloodbath-erl">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}
]}.
{hex, [{doc, ex_doc}]}.