-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathrebar.config
More file actions
29 lines (24 loc) · 848 Bytes
/
rebar.config
File metadata and controls
29 lines (24 loc) · 848 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
{erl_opts, [debug_info]}.
{deps,
[{riak_core,
{git,
"https://github.com/basho/riak_core",
{ref, "f15acd3a87150431277eb754792ec24a0dc81d75"}}}]}.
{project_plugins, [{rebar3_format, "~> 1.1.0"}]}.
{shell,
% {config, "config/sys.config"},
[{apps, [rc_example]}]}.
{relx,
[{release, {rc_example, "0.1.0"}, [rc_example]},
{dev_mode, true},
{include_erts, false},
{sys_config, "conf/sys.config"},
{vm_args, "conf/vm.args"},
{extended_start_script, false},
{overlay,
[{template, "conf/sys.config", "releases/{{release_version}}/sys.config"},
{template, "conf/vm.args", "releases/{{release_version}}/vm.args"}]}]}.
{profiles,
[{dev1, [{relx, [{overlay_vars, "conf/vars_dev1.config"}]}]},
{dev2, [{relx, [{overlay_vars, "conf/vars_dev2.config"}]}]},
{dev3, [{relx, [{overlay_vars, "conf/vars_dev3.config"}]}]}]}.