mirror of
https://github.com/valitydev/progressor.git
synced 2024-11-06 00:15:21 +00:00
26 lines
595 B
Plaintext
26 lines
595 B
Plaintext
|
{erl_opts, [debug_info]}.
|
||
|
{deps, [
|
||
|
{brod, "3.16.2"},
|
||
|
{prometheus, "4.11.0"},
|
||
|
{thrift, {git, "https://github.com/valitydev/thrift_erlang.git", {branch, "master"}}},
|
||
|
{mg_proto, {git, "https://github.com/valitydev/machinegun-proto.git", {branch, "master"}}},
|
||
|
{epg_connector, {git, "https://github.com/valitydev/epg_connector.git", {branch, "master"}}}
|
||
|
]}.
|
||
|
|
||
|
{shell, [
|
||
|
{config, "config/sys.config"},
|
||
|
{apps, [brod, progressor]}
|
||
|
]}.
|
||
|
|
||
|
{ct_opts, [
|
||
|
{ct_hooks, [prg_ct_hook]}
|
||
|
]}.
|
||
|
|
||
|
{profiles, [
|
||
|
{test, [
|
||
|
{deps, [
|
||
|
{meck, "0.9.2"}
|
||
|
]}
|
||
|
]}
|
||
|
]}.
|