forked from pedro-gutierrez/cmnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
103 lines (96 loc) · 3.04 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
%%-*- mode: erlang -*-
{erl_opts, [debug_info]}.
{plugins, [rebar3_format]}.
{deps, [
{fs, {git, "https://github.com/pedro-gutierrez/fs.git", {branch, "master"}}},
{cowboy, {git, "https://github.com/ninenines/cowboy", {tag, "2.4.0"}}},
{gun, {git, "https://github.com/ninenines/gun.git", {tag, "1.3.1"}}},
{jsone, {git, "https://github.com/sile/jsone.git", {tag, "master"}}},
{uuid, {git, "https://github.com/avtobiff/erlang-uuid.git", {branch, "master"}}},
{erlcloud, {git, "https://github.com/pedro-gutierrez/erlcloud.git", {branch, "master"}}},
{trane, {git, "https://github.com/massemanet/trane.git", {branch, "master"}}},
{yamerl, {git, "https://github.com/yakaz/yamerl.git", {branch, "master"}}},
{erlydtl, {git, "https://github.com/erlydtl/erlydtl.git", {branch, "master"}}},
{color, {git, "https://github.com/julianduque/erlang-color.git", {branch, "master"}}},
{kuberl, {git, "https://github.com/tsloughter/kuberl.git", {branch, "master"}}},
{slacker, {git, "git://github.com/julienXX/slacker.git", {branch, "master"}}},
{erlcron, {git, "https://github.com/pedro-gutierrez/erlcron.git", {branch, "master"}}},
{iso8601, {git, "https://github.com/erlsci/iso8601.git", {tag, "1.3.1"}}},
{jose, ".*", {git, "git://github.com/potatosalad/erlang-jose.git", {branch, "master"}}},
{cbt, {git, "https://github.com/benoitc/cbt.git", {branch, "master"}}},
{evc, {git, "https://github.com/osense/evc.git", {branch, "master"}}},
{prometeus, {git, "https://github.com/deadtrickster/prometheus.erl.git", {tag, "v4.2.0"}}},
{pbkdf2, {git, "https://github.com/erszcz/erlang-pbkdf2.git", {branch, "add-rebar-config"}}},
{sqlite3, {git, "https://github.com/alexeyr/erlang-sqlite3.git", {branch, "master"}}}
]}.
{relx, [
{release, {cmnode, {cmd, "cat VERSION | tr -d '[:space:]'"}}, [
ssl,
inets,
xmerl,
eunit,
jsone,
color,
prometheus,
pbkdf2,
fs,
cbt,
sqlite3,
hackney,
sh,
trane,
cowboy,
gun,
uuid,
erlcloud,
erlcron,
yamerl,
erlydtl,
kuberl,
slacker,
iso8601,
jose,
evc,
cmkit,
cmeffect,
cmdb,
cmstore,
cmconfig,
cmcluster,
cmmetrics,
cmservice,
cmqueue,
cmtemplate,
cmelementary,
cmhtml,
cmcss,
cmweb,
cmnode,
cmtest,
cmcron,
cmtask,
cmtopic,
sasl
]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, false},
{include_erts, false},
{extended_start_script, true}
]}.
{profiles, [
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true}
]}
]}
]}.
{overrides, [
{del, [{erl_opts, [warnings_as_errors]}]},
{override, plain_fsm, [
{deps, [
{edown, ".*", {git, "https://github.com/uwiger/edown.git", "HEAD"}}
]}
]}
]}.