This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
rebar.config
83 lines (71 loc) · 1.85 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
%% -*- erlang -*-
{erl_opts, [
debug_info,
{parse_transform, lager_transform},
warnings_as_errors
]}.
{cover_export_enabled, true}.
{cover_enabled, true}.
{covertool, [
{coverdata_files, [
"ct.coverdata",
"eunit.coverdata"
]}
]}.
{cover_excl_mods, [
blockchain_http_app
]}.
{project_plugins, [
covertool
]}.
{plugins, [erlfmt]}.
{deps, [
lager,
jiffy,
recon,
h3,
iso8601,
libp2p_crypto,
{base64url, "1.0.1"},
{elli, "3.3.0"},
{epgsql, "4.3.0"},
{eql, "0.2.0"},
{erl_angry_purple_tiger,
{git, "https://github.com/helium/erl_angry_purple_tiger.git", {branch, "master"}}},
{psql_migration, {git, "https://github.com/helium/psql-migration.git", {branch, "master"}}},
{helium_proto, {git, "https://github.com/helium/proto.git", {branch, "master"}}},
{envloader, {git, "https://github.com/nuex/envloader.git", {branch, "master"}}},
{dispcount, {git, "https://github.com/Vagabond/dispcount", {branch, "adt/transaction"}}},
{throttle, {git, "https://github.com/helium/throttle", {branch, "adt/custom-increment"}}}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions
]}.
{shell, [{apps, [lager, envloader, epgsql]}]}.
{ct_opts, [{sys_config, ["config/sys.config"]}]}.
{relx, [
{release, {blockchain_http, git}, [
blockchain_http
]},
{vm_args, "./config/vm.args"},
{sys_config, "./config/sys.config"},
{extended_start_script, true},
{include_src, true},
{overlay, [
{template, "config/vm.args", "{{output_dir}}/releases/{{release_version}}/vm.args"},
{copy, "priv/*.sql", "priv/"}
]}
]}.
{profiles, [
{prod, [
{relx, [
{dev_mode, false},
{include_src, false},
{include_erts, true}
]}
]},
{test, [
{deps, [meck]}
]}
]}.