X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Freleases.exs;h=19636765f51b6381ff6e18581c50fbd204624c29;hb=d9e4b77f8be8249b428a7ef1448c9a2161dee88a;hp=becde76932f3561fd09d73464d43f1f7769ed87d;hpb=e343e4ff914d98e1ce9b5aa30185a4afd907e1b6;p=akkoma diff --git a/config/releases.exs b/config/releases.exs index becde7693..19636765f 100644 --- a/config/releases.exs +++ b/config/releases.exs @@ -1 +1,31 @@ import Config + +config :pleroma, :instance, static_dir: "/var/lib/pleroma/static" +config :pleroma, Pleroma.Uploaders.Local, uploads: "/var/lib/pleroma/uploads" +config :pleroma, :modules, runtime_dir: "/var/lib/pleroma/modules" + +config_path = System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs" + +config :pleroma, release: true, config_path: config_path + +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 + +exported_config = + config_path + |> Path.dirname() + |> Path.join("prod.exported_from_db.secret.exs") + +if File.exists?(exported_config) do + import_config exported_config +end