X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Freleases.exs;h=36c49367384be2eb63b9089ffdfbfd6ae1f1b278;hb=43ea16870fe60578a6528e1f01bfaab68943a1bc;hp=becde76932f3561fd09d73464d43f1f7769ed87d;hpb=63ab3c30ebb33241074cb252c449cd7879b77870;p=akkoma diff --git a/config/releases.exs b/config/releases.exs index becde7693..36c493673 100644 --- a/config/releases.exs +++ b/config/releases.exs @@ -1 +1,19 @@ import Config + +config :pleroma, :instance, static: "/var/lib/pleroma/static" +config :pleroma, Pleroma.Uploaders.Local, uploads: "/var/lib/pleroma/uploads" + +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