20 lines
582 B
Erlang
20 lines
582 B
Erlang
%% -*- mode: erlang -*-
|
|
{application, emqx_dashboard, [
|
|
{description, "EMQX Web Dashboard"},
|
|
% strict semver, bump manually!
|
|
{vsn, "5.0.33"},
|
|
{modules, []},
|
|
{registered, [emqx_dashboard_sup]},
|
|
{applications, [
|
|
kernel, stdlib, mnesia, minirest, emqx, emqx_ctl, emqx_bridge_http
|
|
]},
|
|
{mod, {emqx_dashboard_app, []}},
|
|
{env, []},
|
|
{licenses, ["Apache-2.0"]},
|
|
{maintainers, ["EMQX Team <contact@emqx.io>"]},
|
|
{links, [
|
|
{"Homepage", "https://emqx.io/"},
|
|
{"Github", "https://github.com/emqx/emqx-dashboard5"}
|
|
]}
|
|
]}.
|