-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
54 lines (44 loc) · 1.06 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
{erl_opts, [debug_info,deterministic,verbose,compressed]}.
{deps, [thoas]}.
{shell, [
{erl_opts, [warnings_as_errors]},
{apps, [cozo]}
]}.
{pre_hooks, [{compile, "make deps"}
,{clean, "make clean"}
]}.
%% {artifacts, ["priv/libcozo_c.so", "priv/cozo_nif.so"]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{eunit_opts, [verbose]}.
{dialyzer, [{warnings, [no_return, no_match]}]}.
{plugins, [rebar3_hex]}.
{project_plugins, [
rebar3_proper,
rebar3_ex_doc,
rebar3_hex
]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{ex_doc, [
{name, "Cozo"},
{source_url, <<"https://github.com/niamtokik/cozo">>},
{extras, [
<<"README.md">>,
<<"doc_extras/cheatsheet.md">>,
<<"LICENSE.md">>
]},
{main, <<"README.md">>},
%% {logo, "assets/logo.png"},
{extra_section, "Pages"},
{api_reference, true},
{groups_for_extras, #{
<<"Introduction">> => [],
<<"Tutorials">> => [],
<<"How-to Guides">> => [],
<<"Deployment">> => [],
<<"Technical Reference">> => []
}},
{groups_for_modules, []}
]}.