-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrebar.config
35 lines (35 loc) · 1.46 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
{plugins, [{rebar_sesterl, {git, "https://github.com/gfngfn/rebar_sesterl_plugin.git", {branch, "master"}}}]}.
{src_dirs, ["./_generated", "./src", "./src/_generated"]}.
{deps, [
{sesterl_stdlib, {git, "https://github.com/gfngfn/sesterl_stdlib", {tag, "v0.4.1"}}},
{sesterl_json, {git, "https://github.com/gfngfn/sesterl_json", {tag, "v0.0.2"}}},
{jsone, "1.5.7"},
{uuid, {git, "https://github.com/okeuday/uuid.git", {tag, "v2.0.1"}}},
{bbmustache, "1.12.1"},
{cowboy, "2.8.0"},
{cowboy_session, {git, "https://github.com/gfngfn/cowboy_session.git", {branch, "master"}}}
]}.
{profiles, [
{test, [
{deps, [{sesterl_testing, {git, "https://github.com/gfngfn/sesterl_testing", {tag, "v0.0.2"}}}]}
]},
{prod, [
{relx, [
{mode, prod},
{release, {tianjiupai, "0.1.0"}, [sasl, jsone, uuid, bbmustache, cowboy, cowboy_session, tianjiupai]},
{dev_mode, false}
]}
]}
]}.
{profiles, [{test, [{deps, [{sesterl_testing, {git, "https://github.com/gfngfn/sesterl_testing", {tag, "v0.0.2"}}}]}]}]}.
{eunit_tests, [{dir, "./_generated_test"}, {dir, "./test"}]}.
{relx, [
{release, {tianjiupai, "0.1.0"}, [sasl, jsone, uuid, bbmustache, cowboy, cowboy_session, tianjiupai]},
{dev_mode, true},
{sys_config, "./config/sys.config"}
]}.
{shell, [
{config, "./config/sys.config"},
{apps, [tianjiupai]}
]}.
{sesterl_opts, [{output_dir, "./_generated"},{test_output_dir, "./_generated_test"}]}.