-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
51 lines (42 loc) · 1.07 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{erl_opts, [
debug_info,
error,
warn_export_all,
warn_export_vars,
warn_obsolete_guard,
warn_shadow_vars,
{parse_transform, lager_transform}
]}.
{deps, [
{lager, ".*", {git, "https://github.com/basho/lager.git", {tag, "2.1.1"}}},
{cowboy, ".*", {git, "https://github.com/ninenines/cowboy.git", {branch, "master"}}},
{enacl, ".*", {git, "https://github.com/ahf/enacl.git", {branch, "ed25519"}}},
{poolboy, "1.4.2"}
]}.
{relx, [
{release, {celo, "0.1.0"}, [
celo_core,
celo_http,
celo_ssh
]},
{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}]}
]
},
{test, [
{deps, [
{triq, ".*", {git, "https://github.com/krestenkrab/triq.git", {ref, "2fe1529bc1460e0a8cd356ef7a8fda9e43120445"}}}
]}
]}
]}.
{dialyzer_warnings, []}.
%% vim: set ft=erlang :