-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
50 lines (45 loc) · 877 Bytes
/
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
{deps, [
grisp,
{epmd, {git, "https://github.com/erlang/epmd", {ref, "4d1a59"}}}
]}.
{erl_opts, [debug_info]}.
{grisp, [
{otp, [
{version, "22.0"}
]},
{deploy, [
{pre_script, "rm -rf /Volumes/GRISP/*"},
{destination, "/Volumes/GRISP"},
{post_script, "diskutil unmount /Volumes/GRISP"}
]}
]}.
{shell, [
{apps, [grisp, streamedge]},
{config, "./config/test.config.src"}
]}.
{relx, [
{release, {streamedge, "0.1.0"}, [{epmd, none}, streamedge]}
]}.
{profiles, [
{emulation, [
{deps, [
{grisp_emulation, "0.1.2"}
]},
{shell, [
{apps, [grisp, streamedge]},
{config, "config/emulation.config"}
]}
]},
{test, [
{deps, [
{grisp_emulation, "0.1.2"}
]},
{shell, [
{apps, [grisp]},
{config, "config/test.config"}
]}
]},
{eqc, [
{extra_src_dirs, ["test"]}
]}
]}.