23 lines
411 B
Erlang
23 lines
411 B
Erlang
{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, []}
|
|
]}. |