-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
69 lines (59 loc) · 1.44 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
{erl_opts,
[
fail_on_warning,
debug_info,
warn_unused_vars,
warn_unused_import,
warn_exported_vars,
{platform_define, "^((1[89])|2)", deprecated_now},
{parse_transform, lager_transform}
]
}.
{deps, [
{eiconv, "1.0.0"},
{gen_smtp, "1.1.0"},
{jsone, "1.5.5"},
{nested, "0.1.2"},
{hackney, "1.17.0"},
{iso8601, "1.3.1"},
{lager, "3.8.2"},
{backoff, "1.1.6"}
]}.
{dialyzer, [
{warnings, [underspecs]},
{base_plt_apps, [stdlib, kernel, crypto, eiconv, gen_smtp, nested]}
]}.
{profiles, [
{demo, [
{relx, [
{release, {git, long},
[geo_gateway]
},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true},
{sys_config, "priv/conf/app.config"}
]}
]},
{prod, [
{relx, [
{release, {geogateway, "0.2.0"},
[geo_gateway]
},
{dev_mode, false},
{include_erts, true},
{extended_start_script, true},
{overlay, [
{mkdir, "dumps"},
{copy, "priv/conf/configuration.json", "priv/conf/configuration.json"}
]},
{sys_config, "priv/conf/app.config"}
]}
]},
{dev, [
{plugins, [rebar3_auto]},
{relx, [
{sys_config, "priv/conf/app.config"}
]}
]}
]}.