forked from helium/blockchain-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
74 lines (63 loc) · 1.37 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
%% -*- erlang -*-
{erl_opts,
[
debug_info,
{parse_transform, lager_transform},
warnings_as_errors
]}.
{shell,
[
{apps, [lager]}
]}.
{project_plugins,
[
covertool
]}.
{deps,
[
lager,
jiffy,
recon,
h3,
iso8601,
libp2p_crypto,
{base64url, "1.0.1"},
{elli, "3.2.0"},
{epgsql, "4.3.0"},
{observer_cli, "1.5.0"},
{telemetry, "0.4.1"},
{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"}}}
]}.
{xref_checks,
[
undefined_function_calls,
undefined_functions
]}.
{shell, [{apps, [lager, envloader, epgsql]}]}.
{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"}
]}
]}.
{profiles,
[
{prod,
[
{relx, [{dev_mode, false},
{include_erts, true}]}
]}
]}.