-
Notifications
You must be signed in to change notification settings - Fork 6
/
rebar.config
43 lines (35 loc) · 938 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
{erl_opts, [debug_info,
{parse_transform, lager_transform},
{lager_extra_sinks, [blizanci_access]},
warnings_as_errors
]}.
{deps, [
{lager, "3.9.2"},
{ranch, "2.0.0"},
{erlexec, "1.18.8"},
realpath,
ppool,
mime_lookup
]}.
{relx, [{release, {blizanci, "0.1.1"},
[blizanci,
sasl,
ranch,
realpath,
ppool,
lager,
runtime_tools,
mime_lookup,
eunit]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]
}.
{edoc_opts, [{title, "Blizanci - a Gemini server."}]}.
{profiles, [{prod, [{relx, [{dev_mode, false},
{include_erts, true}]}]
}]
}.
%{dialyzer, [{warnings, [underspecs,overspecs]}]}.