What are the bare-minimums we can leave in `prod.secret.exs` if we're to use in-db configs?

hi,

so once after we decide to migrate the config file to db, and actually did so, what are the absolute bare-minimums we can leave inside the prod.secret.exs file?

of course we should have these intact:

config :pleroma, configurable_from_database: true

config :pleroma, Pleroma.Repo,
  adapter: Ecto.Adapters.Postgres,
  database: "...",
  hostname: "...",
  password: "...",
  port: ...,
  ssl: true,
  username: "..."

what else should we leave in the config file?

yeah it’s basically SQL config and HTTP client settings (that get started on boot)

the rest are happily loaded from the database

1 Like

aight, thanks alot for making that clear!