-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrebar.config
30 lines (27 loc) · 1.02 KB
/
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
{erl_opts, [debug_info,
{parse_transform, lager_transform}]}.
{deps, [
{cowboy, "1.1.2"},
{jsx, "2.8.2"},
{jwt, "0.1.3"},
{pgapp, {git, "https://github.com/epgsql/pgapp.git", {tag, "90c309"}}},
{erlpass, {git, "https://github.com/ferd/erlpass.git", {tag, "1.0.4"}}},
{throttle, {git, "https://github.com/lambdaclass/throttle.git", {ref, "26098a"}}},
{lager, "3.5.1"},
{hackney, "1.8.6"},
{erlcloud, "2.2.15"},
{katana, "0.4.0"},
{base64url, "0.0.1"}
]}.
{relx, [{release, {holiday_ping, "0.1.0"},
[holiday_ping]},
{dev_mode, true},
{include_erts, false},
{extended_start_script, false}
]}.
{ct_opts, [{sys_config, "conf/test.config"},
{logdir, "ct_log"}]}.
{profiles, [{prod, [{relx, [{dev_mode, false},
{include_erts, true},
{sys_config, "./conf/prod.config"},
{extended_start_script, true}]}]}]}.