-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
34 lines (28 loc) · 1.45 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
31
32
33
34
%% -*- mode: erlang -*-
{erl_opts, [debug_info,
{i, ["include"]},
{parse_transform, lager_transform} ]}.
{deps, [{ecsv, {git, "https://github.com/dendrown/ecsv.git", {branch, "uqam"}}},
{egnup, {git, "https://github.com/dendrown/egnup.git", {branch, "uqam"}}},
{llog, {git, "https://github.com/dendrown/llog.git", {branch, "uqam"}}},
%---------------------------------------------------------------------------------
{epgsql, {git, "https://github.com/epgsql/epgsql.git", {tag, "4.6.0"}}},
{erlsom, {git, "https://github.com/willemdj/erlsom", {tag, "1.5.0"}}},
{jsx, {git, "https://github.com/talentdeficit/jsx.git", {tag, "v3.1.0"}}},
{oauth, {git, "https://github.com/erlangpack/erlang-oauth.git", {tag, "v2.1.0"}}},
{tempo, {git, "https://github.com/selectel/tempo.git", {tag, "0.4.3"}}},
{yaws, {git, "https://github.com/erlyaws/yaws.git", {branch, "master"}}} % FIXME > yaws-2.1.1
]}.
{relx, [{release, { say_sila, "0.1.0" },
[say_sila,
sasl]},
{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}]}]
}]
}.