19 lines
450 B
Erlang
19 lines
450 B
Erlang
%% -*- mode: erlang -*-
|
|
|
|
{erl_opts, [debug_info, nowarn_unused_import]}.
|
|
{deps, [
|
|
{emqx, {path, "../emqx"}},
|
|
{emqx_utils, {path, "../emqx_utils"}},
|
|
{emqx_connector, {path, "../emqx_connector"}},
|
|
{emqx_mongodb, {path, "../emqx_mongodb"}},
|
|
{emqx_redis, {path, "../emqx_redis"}},
|
|
{emqx_mysql, {path, "../emqx_mysql"}}
|
|
]}.
|
|
|
|
{shell, [
|
|
% {config, "config/sys.config"},
|
|
{apps, [emqx_authz]}
|
|
]}.
|
|
|
|
{project_plugins, [erlfmt]}.
|