Trellox.Config (trellox v0.0.1) View Source

Trellox client configurations

To use Trellox you must add into your config file config.exs the required config:

config :trellox, key: "your-trello-api-key"

Allowed configuration:

  • key(required): The API key provide for Trello Dashboard.
  • host: A string containing the API host. (default is "api.trello.com")

Link to this section Summary

Link to this section Types

Specs

config_overrides() :: [key: binary(), host: binary()]

Specs

t() :: %Trellox.Config{
  adapter: Trellox.Config.Adapter.t(),
  host: URI.t(),
  key: String.t()
}