-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
33 lines (32 loc) · 853 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
{deps, [
{nkdocker, {git, "https://github.com/Nekso/nkdocker.git", {tag, "v0.118.2"}}},
{dns_erlang, {git, "https://github.com/barbct5/dns_erlang.git", {branch, "feature/rebar3"}}},
{swim, {git, "https://github.com/barbct5/swim.git", {branch, "master"}}},
{riak_dt, {git, "https://github.com/basho/riak_dt.git", {tag, "2.1.1"}}}
]}.
{xref_warnings, true}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{relx, [
{release,
{registrator, "0.0.0"},
[{swim, load}, inets, jsx, registrator]},
{dev_mode, true},
{include_erts, false},
{include_src, false},
{extended_start_script, true},
{sys_config, "./config/secure.config"}
]}.
{profiles, [
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true}
]}
]}
]}.