-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
34 lines (29 loc) · 835 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
%
% rebar.config
% =============================================================================
% Urban bus routing microservice prototype (Erlang/OTP port). Version 0.3.5
% =============================================================================
% An Erlang/OTP application, designed and intended to be run as a microservice,
% implementing a simple urban bus routing prototype.
% =============================================================================
% Copyright (C) 2022-2024 Radislav (Radicchio) Golubtsov
%
% (See the LICENSE file at the top of the source tree.)
%
{relx, [
{release, {
bus, "0.3.5"
}, [
bus
]},
{include_src, false}
]}.
{profiles, [
{prod, []}
]}.
{deps, [
{cowboy, "2.10.0"},
{syslog, "1.1.0" },
{jsx, "3.1.0" }
]}.
% vim:set nu et ts=4 sw=4: