-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
37 lines (31 loc) · 988 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
35
36
{erl_opts, [
debug_info
,{parse_transform, lager_transform}
,{lager_truncation_size, 1024}
,{d, debug}
,nowarn_unused_vars
,nowarn_unused_function
,nowarn_unused_record
,nowarn_export_all
]}.
{deps, [
{lager, {git, "https://github.com/erlang-lager/lager.git", {tag, "3.6.2"}}},
{gproc, {git, "https://github.com/uwiger/gproc.git", {branch, "master"}}},
{mnesia_cluster, {git, "https://github.com/russagit/mnesia_cluster.git", {branch, "master"}}}
]}.
{relx, [{release, { neuroevo, "0.1.0" },
[ne_common,
gs,
neuroevo,
sasl],
[{sys_config, "./config/sys_neuroevo.config"},
{vm_args, "./config/vm_neuroevo.args"}]},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]
}.
{profiles, [{prod, [{relx, [{dev_mode, false},
{include_erts, true},
{include_src, false}]}]
}]
}.