Current section

Files

Jump to

rebar.config

{erl_opts, [debug_info]}.
{
deps,
[
{erlang_murmurhash, "1.0.0", {pkg, harness_erlang_murmurhash}},
{cfapi, "1.0.0", {pkg, harness_ff_erlang_client_api}},
{ctx, "0.6.0"},
{mochiweb, "3.1.1"},
{base64url, "1.0.1"}
]
}.
{project_plugins, [steamroller, rebar3_hex, rebar3_ex_doc]}.
{
profiles,
[
{prod, [{relx, [{dev_mode, false}]}]},
{
test,
[
{apps, [cfclient]},
{deps, [{meck, "0.9.2"}, {hackney, "1.18.1"}]},
{erl_opts, [debug_info, export_all]},
{eunit_compile_opts, [export_all]},
{cover_enabled, true},
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "eunit-reports/"}]}}]}
]
}
]
}.
{dialyzer, [all_deps]}.
{ex_doc, [
{extras, ["README.md", "LICENSE"]},
{main, "README.md"},
{source_url, "https://github.com/harness/ff-erlang-server-sdk"}
]}.
{hex, [{doc, ex_doc}]}.
{
steamroller,
[
{line_length, 100},
{indent, 2}
% {inputs, ["rebar.config", "{src,test,include}/*.{[he]rl,app.src}"]}
]
}.
{
shell,
[
% {config, "config/sys.config"},
{apps, [cfclient]}
]
}.