Allow overriding config via config/custom.exs

new-login
Marcin Kulik 7 years ago
parent 7446bc6f89
commit 640e0e227b

1
.gitignore vendored

@ -38,6 +38,7 @@ erl_crash.dump
# secrets file as long as you replace its contents by environment
# variables.
/config/prod.secret.exs
/config/custom.exs
## Docker

@ -79,3 +79,6 @@ config :exq_ui,
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env}.exs"
# Import custom config.
import_config "custom*.exs"

Loading…
Cancel
Save