Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

33 rader
1017 B

  1. {{=@@ @@=}}
  2. {erl_opts, [debug_info]}.
  3. {deps, []}.
  4. {relx, [{release, {@@name@@, "0.1.0"},
  5. [@@name@@,
  6. sasl]},
  7. {mode, dev},
  8. %% automatically picked up if the files
  9. %% exist but can be set manually, which
  10. %% is required if the names aren't exactly
  11. %% sys.config and vm.args
  12. {sys_config, "./config/sys.config"},
  13. {vm_args, "./config/vm.args"}
  14. %% the .src form of the configuration files do
  15. %% not require setting RELX_REPLACE_OS_VARS
  16. %% {sys_config_src, "./config/sys.config.src"},
  17. %% {vm_args_src, "./config/vm.args.src"}
  18. ]}.
  19. {profiles, [{prod, [{relx,
  20. [%% prod is the default mode when prod
  21. %% profile is used, so does not have
  22. %% to be explicitly included like this
  23. {mode, prod}
  24. %% use minimal mode to exclude ERTS
  25. %% {mode, minimal}
  26. ]
  27. }]}]}.