-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
47 lines (41 loc) · 903 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
%% -*- mode: erlang; flycheck-mode: nil -*-
{project_plugins, [rebar3_run]}.
{plugins,
[
{'lfe-compile', "0.7.0", {pkg, rebar3_lfe_compile}}
]}.
{provider_hooks,
[
{post, [{compile, {lfe, compile}}]}
]}.
{deps,
[
{lfe, "1.2.0"},
{egithub,
{git, "git://github.com/yurrriq/erlang-github.git",
{branch, "develop"}}},
{elli,
{git, "git://github.com/elli-lib/elli.git",
{branch, "develop"}}},
{elli_date, "1.1.1"}
]}.
{profiles,
[
{test,
[
{eunit_compile_opts, [{src_dirs, ["test"]}]},
{deps,
[
{ltest, {git, "git://github.com/lfex/ltest.git", {tag, "0.9.0"}}}
]}
]}
]}.
{relx,
[
{release, {lfeco, "0.1.0"}, [lfeco, {elli, load}]},
{extended_start_script, true},
{vm_args, "./config/vm.args"},
{sys_config, "./config/sys.config"},
{dev_mode, true},
{include_erts, false}
]}.