-
Notifications
You must be signed in to change notification settings - Fork 8
/
rebar.config
34 lines (27 loc) · 916 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
{erl_opts, [debug_info, {parse_transform, lager_transform}, warnings_as_errors]}.
{deps, [
cowboy,
jsx,
lager
]
}.
{plugins, [rebar3_run]}.
{enable_cover, true}.
{relx, [{release, { ocas, "0.1.0" },
[ocas,
sasl]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]
}.
{profiles, [{prod, [{relx, [{dev_mode, false}, {include_erts, true}]}] },
{test, [{deps, [shotgun]}, {erl_opts, [debug_info]} ]},
{lint, [{plugins, [{rebar3_lint,
{git, "https://github.com/project-fifo/rebar3_lint.git",
{tag, "0.1.7"}}}]}]},
{ci, [{ct_opts, [{ct_hooks, [cth_surefire]}]},
{extra_src_dirs, []}]}
]
}.