-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
43 lines (36 loc) · 835 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
% -*- mode: erlang -*-
{erl_opts, [debug_info, fail_on_warning,
{d, 'HUT_LAGER'},
{parse_transform, lager_transform}
]}.
{lib_dirs, [deps]}.
{deps, [
{cowboy, "2.6.3"},
{hut, "1.3.0"},
{lager, "3.7.0"},
{jiffy, "1.0.1"},
{epgsql, "4.2.1"},
{poolboy, "1.5.2"}
]}.
{relx, [{release, { eplaypen, "0.2.0" },
[jiffy,
epgsql,
cowboy,
poolboy,
lager,
eplaypen]},
{sys_config, "conf/dev-sys.config"},
{vm_args, "conf/dev-vm.args"},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}
]
}.
{profiles,
[{prod,
[{relx,
[{dev_mode, false},
{vm_args, "conf/vm.args"},
{sys_config, "conf/sys.config"}]}]
}
]}.