Current section

Files

Jump to

rebar.config

{erl_opts, [debug_info]}.
{
deps,
[
{cfapi, "1.0.3", {pkg, harness_ff_erlang_client_api}},
{murmur, "1.0.3"},
{ctx, "0.6.0"},
{mochiweb, "3.2.2"},
{base64url, "1.0.1"}
]
}.
{project_plugins, [steamroller, rebar3_hex, rebar3_ex_doc, rebar_mix]}.
{
profiles,
[
{prod, [{relx, [{dev_mode, false}]}]},
{
test,
[
{apps, [cfclient]},
{deps, [{meck, "0.9.2"}, {hackney, "1.20.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]}]}.