This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
rebar.config
79 lines (75 loc) · 2.3 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{cover_enabled, true}.
{erl_opts, [debug_info,
warnings_as_errors]}.
{deps,
[
{chef_secrets,
{git, "https://github.com/chef/chef_secrets", {branch, "master"}}},
{pushy_common,
{git, "https://github.com/chef/pushy_common", {branch, "master"}}},
{lager,
{git, "https://github.com/basho/lager", {branch, "master"}}},
{meck,
{git, "https://github.com/eproxus/meck", {branch, "master"}}},
{erlzmq,
{git, "https://github.com/chef/erlzmq2", {branch, "devel" }}},
{gproc,
{git, "https://github.com/esl/gproc", {branch, "master"}}},
{jiffy,
{git, "https://github.com/davisp/jiffy", {branch, "master"}}},
{sqerl,
{git, "https://github.com/chef/sqerl", {branch, "master"}}},
{chef_authn,
{git, "https://github.com/chef/chef_authn", {branch, "master"}}},
{ej,
{git, "https://github.com/seth/ej", {branch, "master"}}},
{opscoderl_wm,
{git,"https://github.com/chef/opscoderl_wm", {branch, "master"}}},
{envy,
{git, "https://github.com/manderson26/envy", {branch, "master"}}},
%% Monitoring and logging
{folsom,
{git, "https://github.com/chef/folsom", {branch, "master"}}},
{folsom_graphite,
{git, "https://github.com/chef/folsom_graphite", {branch, "master"}}},
%% Debuggging
{eper,
{git, "https://github.com/massemanet/eper", {branch, "master"}}}
]}.
{plugins, []}.
{overrides, [
{override, jiffy,
[
{plugins, [pc]},
{provider_hooks,
[
{post, [
{compile, {pc, compile}},
{clean, {pc, clean}}
]}
]}
]}
]}.
{relx, [{release, {"opscode-pushy-server", "0.0.1"},
[pushy,
common_test,
eunit,
eper,
{runtime_tools, load},
{webtool, load},
{test_server, load},
{ssh, load},
{snmp, load},
{bear, load},
{hipe, load},
{mnesia, load},
{tools, load}
]},
{extended_start_script,true},
{overlay_vars,"config/vars.config"},
{overlay,[{mkdir,"log/sasl"},
{copy,"keys","."},
{template,"config/vm.args","vm.args"},
{template,"config/app.config","sys.config"}]}
]
}.