forked from rschlaikjer/erlang-atrace-flamegraphs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
53 lines (52 loc) · 1.43 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
{mod_cond, all}.
{sub_dirs, [
"rel",
"src"
]}.
{lib_dirs,
[
"deps",
"apps"
]
}.
{deps, [
{lager, "3.2.0", {git, "https://github.com/basho/lager.git", {tag, "3.2.1"}}},
{uuid, ".*", {git, "https://github.com/avtobiff/erlang-uuid.git", "master"}},
{poolboy, ".*", {git, "https://github.com/devinus/poolboy.git", "master"}},
{cowboy, "1.0.4", {git, "git://github.com/ninenines/cowboy.git", {tag, "1.0.4"}}},
{raven, ".*", {git, "https://github.com/rschlaikjer/raven-erlang.git", "master"}},
{estatsd, ".*", {git, "https://github.com/RJ/estatsd.git", "master"}}
]}.
{relx, [
{release, {aflame,
"20160514.051731" %% relflow-release-version-marker
},
[sasl, aflame]},
{dev_mode, false},
{include_erts, true},
{extended_start_script, true}]}.
{profiles, [
{docker, [
{relx, [
{dev_mode, false},
{overlay, [
{template, "files/app.docker.config", "releases/\{\{rel_vsn\}\}/sys.config"}
]},
{include_erts, true}
]}
]},
{prod, [
{relx, [
{dev_mode, false},
{overlay, [
{template, "files/app.config", "releases/\{\{rel_vsn\}\}/sys.config"}
]},
{include_erts, true}
]}
]}
]}.
{erl_opts, [
debug_info,
{parse_transform, lager_transform},
{i, "./_build/default/plugins/gpb/include"}
]}.