-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrebar.config
More file actions
28 lines (22 loc) · 865 Bytes
/
rebar.config
File metadata and controls
28 lines (22 loc) · 865 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
{require_otp_vsn, "17"}.
{erl_opts,[
fail_on_warning,
{parse_transform, lager_transform}
]}.
{deps,[
{dobby, ".*", {git, "https://github.com/ivanos/dobby_core_lib.git",
{branch,"master"}}},
{erl_sshd, ".*", {git, "https://github.com/ivanos/erl_sshd.git",
{branch,"master"}}},
{dobby_rest, ".*", {git, "https://github.com/ivanos/dobby_rest_lib.git",
{branch,"master"}}},
{dobby_ui, "", {git, "https://github.com/ivanos/dobby_ui_lib.git",
{branch, "master"}}, [raw]}
]}.
{sub_dirs,["rel"]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{eunit_opts, [verbose]}.
{eunit_compile_opts, [{src_dirs, ["src", "test"]}]}.
{post_hooks, [{compile,
"sh -c 'cp -r deps/dobby_ui/www deps/dobby_rest/priv/static'"}]}.