rebar.config 330 B

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