1 defmodule Pleroma.Config.ReleaseRuntimeProvider do
3 Imports `runtime.exs` and `{env}.exported_from_db.secret.exs` for elixir 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())
14 config_path = System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs"
17 if File.exists?(config_path) do
18 runtime_config = Config.Reader.read!(config_path)
21 |> Config.Reader.merge(pleroma: [config_path: config_path])
22 |> Config.Reader.merge(runtime_config)
27 "!!! #{config_path} not found! Please ensure it exists and that PLEROMA_CONFIG_PATH is unset or points to an existing file",
35 exported_config_path =
38 |> Path.join("prod.exported_from_db.secret.exs")
41 if File.exists?(exported_config_path) do
42 exported_config = Config.Reader.read!(with_runtime_config)
43 Config.Reader.merge(with_runtime_config, exported_config)