aboutsummaryrefslogtreecommitdiff
path: root/server/rebar.config
blob: 7f515e9c1a2c250e91c6bd756c77683dae33c4b7 (plain)
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
{erl_opts, [debug_info]}.

{deps, [
    {jsx, "3.1.0"},
    {cowboy, "2.10.0"},
    {bcrypt, "1.2.0"},
    {jwt, "0.1.11"}
]}.

{shell, [
    {config, "config/sys.config"},
    {apps, [jchat]}
]}.

{relx, [
    {release, {jchat, "0.1.0"}, [jchat, sasl]},
    {mode, dev},
    {include_erts, false}
]}.

{profiles, [
    {prod, [
        {relx, [
            {mode, prod},
            {include_erts, true}
        ]}
    ]},
    {test, [
        {erl_opts, [debug_info, {d, 'TEST'}]},
        {deps, [
            {proper, "1.4.0"},
            {meck, "0.9.2"}
        ]}
    ]}
]}.