-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
61 lines (53 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{plugins, [rebar3_auto]}.
{erl_opts, [
debug_info,
{i, "include/proto"}
]}.
{src_dirs, ["src", "src/controllers", "src/proto", "include", "include/proto"]}.
{project_plugins, [rebar3_gpb_plugin]}.
{provider_hooks, [
{pre, [ {compile, {protobuf, compile}},
{clean, {protobuf, clean}}
]
}
]}.
{gpb_opts, [
{i, "proto"},
{include_as_lib, true},
{o_erl, "src/proto"},
{o_hrl, "include/proto"},
{recursive, true},
{strings_as_binaries, true},
type_specs,
mapfields_as_maps
]}.
{deps, [
{nova, {git, "https://github.com/novaframework/nova.git",
{branch, "master"}}},
{cedb, {git, "git://github.com/hachreak/cedb.git",
{branch, "master"}}},
{enacl, {git, "git://github.com/jlouis/enacl.git",
{branch, "master"}}},
{gpb, {git, "https://github.com/tomas-abrahamsson/gpb.git",
{tag, "4.5.1"}}},
{jaderl, {git, "https://github.com/hengestone/jaderl.git",
{branch, "master"}}},
{jiffy, {git, "https://github.com/davisp/jiffy.git",
{tag, "1.0.1"}}},
{sentry, {git, "https://github.com/artemeff/raven-erlang.git",
{tag, "v0.4.1"}}}
]}.
{shell, [
{apps, [
scuttleberl, cedb
]
},
{config, ["config/sys.config"]}
]
}.
{relx, [{release, {"scuttleberl-dev", "0.1.0"},
[scuttleberl]},
{dev_mode, false},
{include_erts, false},
{extended_start_script, true}
]}.