-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
34 lines (30 loc) · 836 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]}.
{deps, [
{poolboy, {git, "https://github.com/devinus/poolboy", {branch, master}}},
{eredis, {git, "https://github.com/wooga/eredis.git", {branch, master}}}
]}.
{shell, [
{apps, [random_prime_numbers]}
]}.
{relx, [
{release, {rpn, "0.1"}, [random_prime_numbers]},
{extended_start_script, true},
{sys_config, "config/sys.config"},
{vm_args, "config/vm.args"},
{dev_mode, true},
{include_src, false}
]}.
{profiles, [
{local, [
{relx, [{include_erts, true}]},
{erl_opts, [no_debug_info]}
]},
{prod, [
{relx, [{sys_config_src, "config/sys.config.src"},
{vm_args_src, "config/vm.args.src"},
{dev_mode, false},
{include_erts, false}
]},
{erl_opts, [no_debug_info]}
]}
]}.