Import release config from env variable or /etc/pleroma/config.exs and

warn if the file is missing
This commit is contained in:
rinpatch 2019-06-11 18:55:55 +03:00
parent 3235923276
commit f0d96534a4

View file

@ -1 +1,16 @@
import Config
config_path = System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs"
if File.exists?(config_path) do
import_config config_path
else
warning = [
IO.ANSI.red(),
IO.ANSI.bright(),
"!!! #{config_path} not found! Please ensure it exists and that PLEROMA_CONFIG_PATH is unset or points to an existing file",
IO.ANSI.reset()
]
IO.puts(warning)
end