Packages

Production-grade Elixir client for the UK Open Banking (OBIE) Read/Write API v3.1.3

Current section

Files

Jump to
obie_client config config.exs
Raw

config/config.exs

import Config
# ── ObieClient base configuration ─────────────────────────────────────────
#
# Defaults shared across all environments. Override in the env-specific files
# below, or at runtime in config/runtime.exs.
#
# See `ObieClient.Config` for full documentation of every key.
config :obie_client,
environment: :sandbox,
timeout: 30_000,
max_retries: 3,
pool_size: 10,
scopes: ~w[accounts payments fundsconfirmations],
signing_key_id: "",
financial_id: ""
# Import environment-specific config. This must remain at the bottom.
import_config "#{config_env()}.exs"