-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
49 lines (43 loc) · 1.17 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
{deps, [
{epmd, {git, "https://github.com/erlang/epmd", {ref, "4d1a59"}}},
{recon, {git, "https://github.com/ferd/recon.git", {branch, "master"}}},
{lasp, {git, "https://github.com/lasp-lang/lasp.git", {branch, "master"}}},
partisan,
{lager, {git, "https://github.com/erlang-lager/lager.git", {branch, "master"}}}
]}.
{shell, [{apps, []},
{config, "config/sys.config"}]}.
{relx, [
{release, {node , "0.1.0"}, [
sasl,
runtime_tools,
{epmd, none},
{lasp, load},
node
]},
{sys_config, "config/sys.config"},
{extended_start_script, true}
]}.
{profiles, [
{test, [
{shell, [{apps, []},
{config, "config/test.config"}]},
{relx, [
{release, {node , "0.1.0"}, [
sasl,
runtime_tools,
{epmd, none},
{lasp, load},
node
]},
{dev_mode, true},
{include_erts, false},
{sys_config, "config/test.config"},
{extended_start_script, true}
]}]
}
]}.
% {fmt_opts, [
% {auto_list_comp, false},
% {keep_unused, true}
% ]}.