This repository has been archived by the owner on May 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
rebar.config
75 lines (67 loc) · 1.75 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
{deps, [
{jsx, "~>2.9"},
{lager, "~>3.6"},
{poolboy, "~>1.5"},
{cowboy, "~>2.4"},
%% AntidoteDB
{antidotec_pb, "~>0.2"},
%% Cassandra
{erlcass, "~>3.2"},
%% Redis Cluster
{eredis_cluster, {git, "https://github.com/adrienmo/eredis_cluster", {tag, "0.5.12"}}},
%% Riak KV
{riak_client, "~>2.5"},
%% AQL client
{aqlc, "~>1.0"}
]}.
{eunit_opts, [
verbose,
{report, {eunit_surefire, [{dir,"."}]}}
]}.
{erl_opts, [
debug_info,
warn_untyped_record,
warnings_as_errors,
{platform_define, "^[0-9]+", namespaced_types},
{parse_transform, lager_transform}
]}.
{plugins, [coveralls]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{coveralls_coverdata, "_build/test/cover/*.coverdata"}.
{coveralls_service_name, "travis-ci"}.
{profiles, [
{prod, [
{erl_opts, [no_debug_info, warnings_as_errors]},
{relx, [{dev_mode, false}]}
]},
{lint, [
{plugins, [
{rebar3_lint, {git, "https://github.com/project-fifo/rebar3_lint.git", {tag, "v0.1.9"}}}
]}
]},
{test, [
{deps, [
{rand_str, "~>1.0"},
{cmd, "~>1.0"}
]}
]}
]}.
{relx, [{release, {fmke, "0.1.0"}, [fmke], [
{vm_args, "config/vm.args"},
{dev_mode, false},
{include_erts, true},
{overlay, [
{copy, "bin/env", "bin"},
{copy, "config/fmke.config", "config/fmke.config"}
]},
{overlay_vars, "config/vars.config"},
{extended_start_script, true}]}
]}.
{xref_checks, [
deprecated_function_calls, deprecated_functions, undefined_function_calls, undefined_functions
]}.
{dist_node, [
{name, '[email protected]'},
{setcookie, fmke}
]}.