-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
41 lines (38 loc) · 906 Bytes
/
Copy pathrebar.config
File metadata and controls
41 lines (38 loc) · 906 Bytes
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
{erl_opts, [debug_info]}.
{project_app_dirs, ["apps/wfcore", "apps/wfcli", "apps/wfdaemon"]}.
{src_dirs, [{"src", [{recursive, true}]}]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{deps, [
{yamerl, "~> 0.10"},
{jsone, "~> 1.9"},
{gun, "2.5.0"},
{dirtree, "1.0.5"}
]}.
{escript_main_app, wfcli}.
{escript_incl_apps, [wfcli, wfcore, wfdaemon, yamerl, jsone, gun,
dirtree, gleam_stdlib]}.
{relx, [
{release, {wfdaemon, {file, "VERSION"}}, [
wfdaemon,
sasl
]},
{mode, dev},
{include_erts, true},
{include_src, false},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"}
]}.
{profiles, [
{prod, [
{erl_opts, [no_debug_info]},
{relx, [
{mode, prod}
]}
]}
]}.