-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
50 lines (39 loc) · 980 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
46
47
48
49
50
{erl_opts, [debug_info]}.
{lfe_first_files, []}.
{deps, [lfe]}.
{plugins, [
rebar_alias,
{'lfe-compile', "0.8.0-rc3", {pkg, rebar3_lfe_compile}},
rebar3_run
]}.
{alias, [{test, [eunit, {ct, "--sname ct --dir ebin"}]}]}.
{provider_hooks, [
{pre, [{compile, {lfe, compile}}]}
]}.
{profiles, [
{doc, [
{plugins, [
{lodox, {git, "https://github.com/lfe-rebar3/lodox.git", {tag, "0.16.2"}}}
]}
]},
{prod, [{relx, [{dev_mode, false},
{include_erts, true}]}]},
{test, [
{eunit_compile_opts, [
{src_dirs, ["test", "src"]}
]},
{ct_compile_opts, [
{src_dirs, ["test", "src"]}
]},
{deps, [ltest]}]}
]}.
{relx, [{release, {'tributario', "0.0.1"},
['tributario',
lfe,
sasl]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]
}.