mirror of
https://github.com/valitydev/progressor.git
synced 2024-11-06 00:15:21 +00:00
79f16f9cc3
* TD-934: add prototype implementation * TD-934: fix * TD-934: fix spec * TD-934: fix spec * TD-927: add context * TD-927: fix json saving * TD-927: fix * TD-927: fix calls processing * TD-927: fix call and repair processing, add remove action impl. * TD-934: add kafka client * XP-934: bump epg_connector * TD-927: fix for table names * XP-927: add common tests * TD-927: reworks * TD-927: cleanup * TD-927: fix pg_backend * TD-927: fix calls procesiing * TD-927: add benchmark * TD-927: bump epg_connector * TD-927: fixes * TD-927: fix timers saving * TD-927: bump epg_connector * XP-927: fix bench config * TD-927: fix worker * TD-927: cleanup * TD-927: add logs * TD-927: add logs * TD-927: add logs * TD-927: add metrics * TD-927: fix scheduler pop task * TD-927: rework pools * TD-927: some optimizations * TD-927: rework pg backend * TD-927: update test config * TD-927: bump epg_connector, cleanup --------- Co-authored-by: ttt161 <losto@nix>
26 lines
595 B
Erlang
26 lines
595 B
Erlang
{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"}
|
|
]}
|
|
]}
|
|
]}.
|