-
Notifications
You must be signed in to change notification settings - Fork 69
/
rebar.config
47 lines (39 loc) · 954 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
%% -*- mode: erlang -*-
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{erl_opts, [
warnings_as_errors,
debug_info
]}.
{deps,
[{hpack, {pkg, hpack_erl}}]}.
{cover_enabled, true}.
{ct_opts, [{verbose,true}]}.
{dialyzer, [unknown]}.
{profiles,
[
{test, [
{erl_opts,
[
{i,["include"]},
nowarn_export_all
]},
{deps,
[{ranch, "1.2.1"}]}
]
}]
}.
{relx, [
{release,{chatterbox,"0.0.1"},
[chatterbox]},
{sys_config, "./config/sys.config"},
%%{vm_args, "./config/vm.args"},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true},
{overlay,[
{template,"config/sys.config","sys.config"},
{copy,"config/localhost.crt","."},
{copy,"config/localhost.key","."}
]}
]}.