This repository was archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrebar.config
More file actions
44 lines (39 loc) · 1.32 KB
/
rebar.config
File metadata and controls
44 lines (39 loc) · 1.32 KB
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
{erl_opts, [debug_info, {parse_transform, lager_transform}]}.
{deps, [
{ibrowse, {git, "https://github.com/cmullaparthi/ibrowse.git", {tag, "v4.4.2"}}},
{jiffy, {git, "https://github.com/davisp/jiffy.git", {tag, "1.1.1"}}},
{lager, {git, "https://github.com/erlang-lager/lager.git", {tag, "3.9.2"}}},
{pgapp, {git, "https://github.com/technion/pgapp.git", "master"}},
{meck, {git, "https://github.com/eproxus/meck.git", {tag, "0.9.2"}}},
{gen_smtp, {git, "https://github.com/Vagabond/gen_smtp.git", {tag, "1.1.1"}}}
]
}.
{overrides,
[{override, jiffy, [
{plugins, [
{pc, {git, "git@github.com:blt/port_compiler.git", {branch, "master"}}}
]},
{provider_hooks, [
{post,
[
{compile, {pc, compile}},
{clean, {pc, clean}}
]
}]
}
]}
]}.
{relx, [{release, {'ct_advisor', "0.1.0"},
['ct_advisor',
sasl]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{overlay, [{mkdir, "priv"}, {copy, "priv/credentials.rr", "priv/"} ]},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]
}.
{profiles, [{prod, [{relx, [{dev_mode, false},
{include_erts, true}]}]
}]
}.