-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathrebar.config
53 lines (48 loc) · 1.94 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
{erl_opts, [debug_info,
{parse_transform, lager_transform}
]}.
{deps, [
{apns, {git, "https://github.com/dcy/apns4erl", {branch, "master"}}},
{hackney, {git, "https://github.com/benoitc/hackney", {tag, "1.6.5"}}},
{turtle, {git, "https://github.com/shopgun/turtle", {tag, "1.8.1"}}},
{flyme_push, {git, "https://github.com/dcy/flyme_push", {branch, "master"}}},
{fcm_push, {git, "https://github.com/dcy/fcm_push", {branch, "master"}}},
{huawei_push, {git, "https://github.com/dcy/huawei_push", {branch, "master"}}},
{hms_push, {git, "https://github.com/dcy/hms_push", {branch, "master"}}},
{xiaomi_push, {git, "https://github.com/dcy/xiaomi_push", {branch, "master"}}},
{eyunpian, {git, "https://github.com/dcy/eyunpian", {branch, "master"}}},
{eqsms, {git, "https://github.com/dcy/eqsms", {branch, "master"}}},
{gen_smtp, {git, "https://github.com/Vagabond/gen_smtp", {tag, "0.11.0"}}},
{cowboy, {git, "https://github.com/ninenines/cowboy", {tag, "2.0.0-pre.8"}}},
{eutil, {git, "https://github.com/dcy/eutil", {branch, "master"}}}
]}.
%{plugins, [pc]}.
%{provider_hooks,
% [
% {pre,
% [
% {compile, {pc, compile}},
% {clean, {pc, clean}}
% ]}
% ]}.
{relx, [{release, {epush, "0.0.1"},
[epush,
{observer, load},
{wx, load},
{runtime_tools, load}
]},
{dev_mode, true},
{include_erts, false},
{sys_config, "config/sys.config"},
{vm_args, "config/vm.args"},
{overlay, [{copy, "priv", "."}]},
{extended_start_script, true}
]}.
{profiles, [{prod, [{relx, [{release, {epush, "0.0.1"},
[epush,
{runtime_tools, load}
]},
{dev_mode, false}
,{include_erts, true}]}
]}
]}.