-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreltool.config
63 lines (61 loc) · 1.95 KB
/
reltool.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
{sys, [
{lib_dirs, ["./lib", "./deps"]},
{erts, [{mod_cond, derived}, {app_file, strip}]},
{app_file, strip},
{rel, "rest_store", "1",
[
kernel,
stdlib,
sasl,
crypto,
bcrypt,
ranch,
cowlib,
cowboy,
eredis,
rest_store,
rest_user,
rest_files
]},
{rel, "start_clean", "",
[
kernel,
stdlib
]},
{boot_rel, "rest_store"},
{profile, embedded},
{incl_cond, exclude},
{excl_archive_filters, [".*"]}, %% Do not archive built libs
{excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)",
"^erts.*/(doc|info|include|lib|man|src)"]},
{excl_app_filters, ["\.gitignore"]},
{app, sasl, [{incl_cond, include}]},
{app, stdlib, [{incl_cond, include}]},
{app, kernel, [{incl_cond, include}]},
{app, crypto, [{incl_cond, include}]},
{app, asn1, [{incl_cond, include}]},
{app, public_key, [{incl_cond, include}]},
{app, ssl, [{incl_cond, include}]},
{app, bcrypt, [{incl_cond, include}]},
{app, ranch, [{incl_cond, include}]},
{app, hackney, [{incl_cond, include}]},
{app, couchbeam, [{incl_cond, include}]},
{app, cowlib, [{incl_cond, include}]},
{app, cowboy, [{incl_cond, include}]},
{app, eredis, [{incl_cond, include}]},
{app, rest_store, [{incl_cond, include}]},
{app, rest_user, [{incl_cond, include}]},
{app, rest_files, [{incl_cond, include}]}
]}.
{target_dir, "rest_store"}.
{overlay, [
{mkdir, "log/sasl"},
{copy, "rebar_files/erl", "\{\{erts_vsn\}\}/bin/erl"},
{copy, "rebar_files/nodetool", "\{\{erts_vsn\}\}/bin/nodetool"},
{copy, "rebar_files/rest_store", "bin/rest_store"},
{copy, "rebar_files/rest_store.cmd", "bin/rest_store.cmd"},
{copy, "rebar_files/start_erl.cmd", "bin/start_erl.cmd"},
{copy, "rebar_files/install_upgrade.escript", "bin/install_upgrade.escript"},
{copy, "rebar_files/sys.config", "releases/\{\{rel_vsn\}\}/sys.config"},
{copy, "rebar_files/vm.args", "releases/\{\{rel_vsn\}\}/vm.args"}
]}.