-
Notifications
You must be signed in to change notification settings - Fork 5
/
rebar.config
61 lines (56 loc) · 1.5 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
{erl_opts, [
fail_on_warning
]}.
{deps,
[
{cowboy, {git, "https://github.com/ninenines/cowboy.git", {tag, "2.6.3"}}},
{erlsom, {git, "https://github.com/willemdj/erlsom.git", {tag, "v1.4.2"}}},
{ecsv, {git, "https://github.com/rcouch/ecsv.git", {tag, "0.3"}}},
{elib, {git, "https://github.com/shuieryin/elib.git", {branch, "master"}}},
{recon, {git, "https://github.com/ferd/recon.git", {tag, "2.5.0"}}}
]}.
{relx,
[
{
release, {wechat_mud, "0.4.0"},
[
sasl,
wechat_mud,
{observer, load},
{elib, load},
{wx, load},
{runtime_tools, load},
{dialyzer, load}
]
},
{dev_mode, false},
{include_erts, true},
{system_libs, false},
{extended_start_script, true},
{vm_args, "config/vm.args"},
{sys_config, "config/sys.config"},
{overlay, [
{mkdir, "log/sasl"},
{copy, "priv", "priv"},
{copy, "misc", "misc"}
]}
]}.
{profiles,
[
{prod,
[
{
relx,
[
{dev_mode, false},
{include_erts, true}
]
}
]
}
]}.
{plugins,
[
{ehcu, {git, "https://github.com/shuieryin/ehcu.git", {branch, "master"}}}
]}.
{minimum_otp_vsn, "21.0"}.