-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrebar.config
42 lines (34 loc) · 1.03 KB
/
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
%%-*- mode: erlang -*-
{deps, [
{webmachine, "1.10.*", {git, "https://github.com/webmachine/webmachine.git", {branch, "main"}}},
{erlydtl, ".*", {git, "https://github.com/evanmiller/erlydtl.git", {branch, "master"}}}
]}.
{plugins, [
{rebar3_erlydtl_plugin, ".*", {git, "https://github.com/tsloughter/rebar3_erlydtl_plugin.git", {branch, "master"}}}
]}.
{provider_hooks, [
{pre, [{compile, {erlydtl, compile}}]}
]}.
{erlydtl_opts, [{doc_root, "templates"}]}.
{relx, [{release, {'webmachine_demo', "0.1.0"},
['webmachine_demo',
sasl]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]
}.
{profiles, [
{dev, [
{deps, [
{sync, ".*", {git, "https://github.com/rustyio/sync.git", {branch, "master"}}}
]}
]},
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true}
]}
]}
]}.