rebar.config 505 B

12345678910111213141516171819
  1. %% -*- mode: erlang -*-
  2. {erl_opts, [debug_info, nowarn_unused_import]}.
  3. {deps, [
  4. {emqx, {path, "../emqx"}},
  5. {emqx_utils, {path, "../emqx_utils"}},
  6. {emqx_connector, {path, "../emqx_connector"}},
  7. {emqx_mongodb, {path, "../emqx_mongodb"}},
  8. {emqx_redis, {path, "../emqx_redis"}},
  9. {emqx_mysql, {path, "../emqx_mysql"}},
  10. {emqx_bridge_http, {path, "../emqx_bridge_http"}}
  11. ]}.
  12. {shell, [
  13. % {config, "config/sys.config"},
  14. {apps, [emqx_authz]}
  15. ]}.
  16. {project_plugins, [erlfmt]}.