First commit

This commit is contained in:
Ulf Wiger
2025-05-13 23:56:46 +02:00
commit a979e18b51
30 changed files with 2255 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
%% -*- mode: erlang; erlang-indent-level: 4; indent-tabs-mode: nil -*-
{application, gmhive_client,
[{description, "Gajumaru Hive Client"},
{vsn, "0.1.0"},
{registered, []},
{applications,
[
kernel
, stdlib
, sasl
, gproc
, inets
, ssl
, enoise
, gmconfig
, gmhive_protocol
, gmhive_worker
]},
{mod, {gmhc_app, []}},
{start_phases, [ {connect_to_primary, []} ]},
{env, []},
{modules, []},
{maintainers, ["QPQ IaaS AG"]},
{licensens, ["ISC"]},
{links, [{"gitea", "https://git.qpq.swiss/gmhive_client"}]}
]}.