-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
45 lines (36 loc) · 871 Bytes
/
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
{ct_opts, [{ct_hooks, [cth_readable_shell]}]}.
{dialyzer, [
{warnings, [unmatched_returns, error_handling, underspecs]},
{plt_extra_apps, [compiler]}
]}.
{deps, [
{recon, {git, "https://github.com/ferd/recon.git", {branch, "master"}}}
]}.
{relx, [
{release, {bferl, "1.0.0"}, [ bferl ]},
{extended_start_script, true}
]}.
{profiles, [
{default, [
{relx, [
{dev_mode, true},
{include_erts, false}
]}
]},
{test, [
{deps, [
{cth_readable, {git, "https://github.com/ferd/cth_readable.git", {branch, "master"}}},
{proper, {git, "https://github.com/manopapad/proper.git", {branch, "master"}}}
]},
{cover_enabled, true},
{erl_opts, [debug_info]}
]},
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true}
]}
]}
]}.
{validate_app_modules, true}.
{shell, [ {apps, [ bferl ]} ]}.