config.exs 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. # This file is responsible for configuring your application
  2. # and its dependencies with the aid of the Mix.Config module.
  3. use Mix.Config
  4. # This configuration is loaded before any dependency and is restricted
  5. # to this project. If another project depends on this project, this
  6. # file won't be loaded nor affect the parent project. For this reason,
  7. # if you want to provide default values for your application for
  8. # 3rd-party users, it should be done in your "mix.exs" file.
  9. # You can configure your application as:
  10. #
  11. # config :mss, key: :value
  12. #
  13. # and access this configuration in your application as:
  14. #
  15. # Application.get_env(:mss, :key)
  16. #
  17. # You can also configure a 3rd-party app:
  18. #
  19. # config :logger, level: :info
  20. #
  21. # It is also possible to import configuration files, relative to this
  22. # directory. For example, you can emulate configuration per environment
  23. # by uncommenting the line below and defining dev.exs, test.exs and such.
  24. # Configuration from the imported file will override the ones defined
  25. # here (which is why it is important to import them last).
  26. #
  27. # import_config "#{Mix.env}.exs"