-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
93 lines (87 loc) · 2.34 KB
/
rebar.config
File metadata and controls
93 lines (87 loc) · 2.34 KB
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
{erl_opts, [debug_info]}.
{deps, [
{brod, "4.3.2"},
{prometheus, "4.11.0"},
{thrift, {git, "https://github.com/valitydev/thrift_erlang.git", {tag, "v1.0.0"}}},
{mg_proto, {git, "https://github.com/valitydev/machinegun-proto.git", {branch, "master"}}},
{epg_connector, {git, "https://github.com/valitydev/epg_connector.git", {tag, "v0.0.5"}}}
]}.
{shell, [
{config, "config/sys.config"},
{apps, [cdc_notifier, cdc_progressor]}
]}.
{xref_checks, [
% mandatory
undefined_function_calls,
undefined_functions,
deprecated_functions_calls,
deprecated_functions
]}.
{dialyzer, [
{warnings, [
% mandatory
unmatched_returns,
error_handling,
unknown
]},
{plt_apps, all_deps}
]}.
{profiles, [
{prod, [
{deps, [
% for introspection on production bdd6632964883636c18cf7bfdd68c4f16f82c79e
{recon, "2.5.2"},
{logger_logstash_formatter,
{git, "https://github.com/valitydev/logger_logstash_formatter.git", {ref, "08a66a6"}}}
]},
{relx, [
{release, {cdc_notifier, "0.1"}, [
{recon, load},
{runtime_tools, load},
{tools, load},
{canal, load},
{epg_connector, load},
logger_logstash_formatter,
sasl,
cdc_notifier,
cdc_progressor
]},
{mode, minimal},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{extended_start_script, true}
]}
]},
{test, [
{deps, [
{progressor, {git, "https://github.com/valitydev/progressor.git", {tag, "v1.0.19"}}},
{meck, "0.9.2"}
]},
{dialyzer, [
{plt_extra_apps, [
eunit,
common_test,
runtime_tools,
meck,
mg_proto,
kafka_protocol,
brod,
progressor,
thrift
]}
]}
]}
]}.
{project_plugins, [
{erlfmt, "1.6.2"},
{rebar3_lint, "3.2.6"}
]}.
{erlfmt, [
{print_width, 120},
{files, [
"apps/*/{src,include,test}/*.{hrl,erl}",
"rebar.config",
"elvis.config",
"config/sys.config"
]}
]}.