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
|
{sys, [
{lib_dirs, ["../apps"]},
{rel, "dbcore", "1.2.4", [
kernel,
stdlib,
sasl,
crypto,
ssl,
inets,
xmerl,
runtime_tools,
mochiweb,
ibrowse,
oauth,
couch
]},
{rel, "start_clean", "", [kernel, stdlib]},
{boot_rel, "dbcore"},
{profile, embedded},
{excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)"]},
{excl_archive_filters, [".*"]},
{app, sasl, [{incl_cond, include}]},
{app, mochiweb, [{incl_cond, include}]},
{app, ibrowse, [{incl_cond, include}]},
{app, oauth, [{incl_cond, include}]},
{app, couch, [{incl_cond, include}]}
]}.
{overlay, [
{copy, "overlay/var"}
]}.
|