-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
33 lines (27 loc) · 793 Bytes
/
rebar.config
File metadata and controls
33 lines (27 loc) · 793 Bytes
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
{erl_opts, [export_all, debug_info]}.
{deps, [
cache,
{mysql_poolboy, ".*", {git, "https://github.com/mysql-otp/mysql-otp-poolboy", {tag, "0.1.7"}}},
{spt_crate, ".*", {git, "https://github.com/indie21/spt_crate.git"}},
{lager, "3.6.1"}
]}.
{relx, [{release, { cache_manager, "0.1.0" },
[
cache_manager,
mysql_poolboy,
spt_crate,
lager,
cache,
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}]}]
}]
}.
{plugins, [rebar3_auto]}.