-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
35 lines (29 loc) · 985 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
{erl_opts, [debug_info]}.
{deps, [{lager, "3.9.2"},
recon,
folsom,
{jsx, "3.0.0"},
{dns_erlang, ".*", {git, "https://github.com/dnsimple/dns_erlang.git", {branch, "main"}}},
iso8601,
{nodefinder, "2.0.0"},
{opentelemetry_api, "0.6.0"},
{meck, "0.9.2"}
]}.
{relx, [{release, {erldns_full, "0.1.0"},
[erldns,
erldns_admin
]},
{mode, dev},
{sys_config, "./config/erldns.config"},
{vm_args, "./config/vm.args"},
{overlay, [{copy, "priv/zones-example.json", "priv/zones-example.json"}]}
]}.
{profiles, [{prod, [{relx,
[%% prod is the default mode when prod
%% profile is used, so does not have
%% to be explicitly included like this
{mode, prod}
%% use minimal mode to exclude ERTS
%% {mode, minimal}
]
}]}]}.