1 defmodule Pleroma.Config.ReleaseRuntimeProvider do
3 Imports runtime config and `{env}.exported_from_db.secret.exs` for releases.
5 @behaviour Config.Provider
8 def init(opts), do: opts
11 def load(config, opts) do
12 with_defaults = Config.Reader.merge(config, Pleroma.Config.Holder.release_defaults())
15 opts[:config_path] || System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs"
18 if File.exists?(config_path) do
19 runtime_config = Config.Reader.read!(config_path)
22 |> Config.Reader.merge(pleroma: [config_path: config_path])
23 |> Config.Reader.merge(runtime_config)
28 "!!! Config path is not declared! Please ensure it exists and that PLEROMA_CONFIG_PATH is unset or points to an existing file",
36 exported_config_path =
37 opts[:exported_config_path] ||
40 |> Path.join("#{Pleroma.Config.get(:env)}.exported_from_db.secret.exs")
43 if File.exists?(exported_config_path) do
44 exported_config = Config.Reader.read!(exported_config_path)
45 Config.Reader.merge(with_runtime_config, exported_config)