This commit is contained in:
2026-04-17 21:36:56 +03:00
commit 7e776ea6e3
11 changed files with 643 additions and 0 deletions

23
src/eventhub.app.src Normal file
View File

@@ -0,0 +1,23 @@
{application, eventhub, [
{description, "Event Management Platform"},
{vsn, "0.0.1"},
{registered, []},
{mod, {eventhub_app, []}},
{applications, [
kernel,
stdlib,
mnesia,
crypto,
cowboy,
jsx
]},
{env, [
{http_port, 8080},
{ws_port, 8081},
{admin_http_port, 8445},
{admin_ws_port, 8446}
]},
{modules, []},
{licenses, ["Apache-2.0"]},
{links, []}
]}.