-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
rebar.config
31 lines (26 loc) · 978 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
{sub_dirs, ["apps/shared", "apps/model", "apps/ui", "apps/feeds", "apps/hasher", "apps/seeder",
"rel/ui", "rel/feeds", "rel/hasher", "rel/seeder"]}.
{deps, [{cowboy, "0.*",
{git, "git://github.com/extend/cowboy.git", {branch, "master"}}},
{epgsql, "VERSION",
{git, "git://github.com/wg/epgsql.git", {tag, "1.4"}}},
{lhttpc, "1.3.*",
{git, "git://github.com/astro/lhttpc.git", {branch, "master"}}},
{poolboy, "1.*",
{git, "git://github.com/devinus/poolboy.git", {branch, "master"}}},
{exmpp, "git-head",
{git, "git://github.com/astro/exmpp.git", {branch, "rebar-openssl-update"}}}
]}.
{xref_warnings, true}.
{relx, [
{release, {feeds, "1.0.0"},
[feeds]},
{release, {hasher, "1.0.0"},
[hasher]},
{release, {seeder, "1.0.0"},
[seeder]},
%% {dev_mode, true},
{include_erts, false},
{extended_start_script, false},
{vm_args, "config/vm.args"}
]}.