This repository has been archived by the owner on Oct 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrebar.config
40 lines (37 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
{erl_opts, [
warn_unused_import
,debug_info
,warnings_as_errors
]}.
{profiles, [
{doc, [
{deps, [edown]}
,{edoc_opts, [{doclet, edown_doclet}]}
]}
,{test, [
{cover_enabled, true}
,{cover_print_enabled, true}
,{cover_export_enabled, true}
,{dialyzer, [
{warnings, [no_return]}
,{plt_apps, top_level_deps}
,{plt_prefix, "posthaste"}
]}
]}
,{release , [{relx, [{release
,{posthaste, "0.0.0"}
,[
posthaste
%, write other deps here
,sasl
]}
,{include_erts, true}
,{include_src, false}
,{dev_mode, false}
,{generate_start_script, true}
,{extended_start_script, true}
,{sys_config, "./config/sys.config"}
,{vm_args, "config/vm.args"}
]}]}
]}.
%%{plugins, [rebar3_hex]}.