-
Notifications
You must be signed in to change notification settings - Fork 23
/
rebar.config
69 lines (61 loc) · 1.78 KB
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{erl_opts, [
debug_info,
warn_missing_spec
]}.
{deps, [
{telemetry, "1.2.1"}
]}.
{profiles, [
{test, [
{plugins, [{rebar3_codecov, "0.6.0"}]},
{deps, [
{meck, "0.9.2"},
{proper, "1.4.0"},
{bbmustache, "1.12.2"},
{wait_helper, "0.2.0"}
]}
]},
{elvis, [{plugins, [{rebar3_lint, "3.2.3"}]}]}
]}.
{relx, [
{release, {amoc, git}, [amoc, runtime_tools]},
{debug_info, keep},
{include_src, true},
{include_erts, true},
{dev_mode, false},
{extended_start_script, true},
{sys_config, "rel/app.config"}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{dialyzer, [
{warnings, [unknown]}
]}.
{project_plugins, [
rebar3_hex,
rebar3_ex_doc
]}.
{ex_doc, [
{source_url, <<"https://github.com/esl/amoc">>},
{extras, [
{'README.md', #{title => <<"A Murder of Crows">>}},
{'guides/scenario.md', #{title => <<"Developing a scenario">>}},
{'guides/local-run.md', #{title => <<"Running locally">>}},
{'guides/configuration.md', #{title => <<"Configuration">>}},
{'guides/distributed.md', #{title => <<"Setting up a distributed environment">>}},
{'guides/distributed-run.md', #{title => <<"Running a load test">>}},
{'guides/telemetry.md', #{title => <<"Telemetry events">>}},
{'guides/throttle.md', #{title => <<"Amoc throttle">>}},
{'guides/coordinator.md', #{title => <<"Amoc coordinator">>}},
{'guides/amoc_livebook.livemd', #{title => <<"Livebook tutorial">>}},
{'LICENSE', #{title => <<"License">>}}
]},
{assets, <<"guides/assets">>},
{main, <<"readme">>}
]}.
{hex, [{doc, ex_doc}]}.