-
Notifications
You must be signed in to change notification settings - Fork 9
/
rebar.config
42 lines (34 loc) · 1.5 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 -*-
{plugins, [{swagger_endpoints, {git, "https://github.com/aeternity/swagger_endpoints",
{ref, "dcbfb26"}}}]}.
{swagger_endpoints, [{src, "config/swagger.yaml"}, {dst, "apps/aesophia_http/src/endpoints.erl"}]}.
{erl_opts, [debug_info]}.
{deps, [
{aeserialization, {git, "https://github.com/aeternity/aeserialization.git",
{tag, "v1.1.0"}}},
{aebytecode, {git, "https://github.com/aeternity/aebytecode.git",
{tag, "v3.4.0"}}},
{aesophia, {git, "https://github.com/aeternity/aesophia.git",
{tag, "v8.0.0"}}},
{eblake2, "1.0.0"},
{jsx, {git, "https://github.com/talentdeficit/jsx.git",
{tag, "v2.11.0"}}},
{jesse, {git, "https://github.com/for-GET/jesse.git",
{ref, "cf075d2"}}},
{cowboy, {git, "https://github.com/ninenines/cowboy.git",
{tag, "2.9.0"}}}
]}.
{relx, [{release, {aesophia_http, "8.0.0"}, [aesophia_http, sasl, aeserialization]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true}]
}.
{profiles, [{prod, [{relx, [{dev_mode, false},
{include_erts, true}]}]
}]
}.
{dialyzer, [{warnings, [unknown]},
{base_plt_apps, [erts, kernel, stdlib, crypto, inets]},
{plt_apps, all_deps}]}.