forked from w2l0o5/observerweb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
34 lines (26 loc) · 900 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
{erl_opts, [debug_info,{parse_transform, lager_transform}, {lager_truncation_size, 1024}]}.
{require_otp_vsn, "19"}.
{plugins, [rebar3_auto]}.
{ deps,
[ {cowboy, {git, "https://github.com/ninenines/cowboy", {tag, "1.1.2"}}}
, {jiffy, {git, "https://github.com/davisp/jiffy", {tag, "0.14.11"}}}
, {iso8601, {git, "https://github.com/kivra/erlang_iso8601", {tag, "1.2.0"}}}
, {lager, {git, "git://github.com/basho/lager.git", {branch, "master"}}}
]
}.
{relx, [{release, { observerweb, "0.2.0" },
[observerweb,cowboy,jiffy,iso8601]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]
}.
{profiles, [{prod,
[{relx,
[{dev_mode, false},
{include_erts, true}
]
}]
}]
}.