Configuration
Configuration is stored in ~/.trello-cli/config.json.
Settings
| Key | Values | Default | Description |
|---|---|---|---|
outputFormat | pretty, json | pretty | Default output format |
Commands
View Configuration
bash
trello config getSet a Value
bash
# Set default output to JSON
trello config set outputFormat json
# Set default output to pretty
trello config set outputFormat prettyReset to Defaults
bash
trello config resetShow Config File Path
bash
trello config path
# Output: /Users/username/.trello-cli/config.jsonFile Structure
json
{
"auth": {
"apiKey": "your-api-key",
"token": "your-token"
},
"settings": {
"outputFormat": "pretty"
}
}WARNING
The config file contains your API credentials. It's created with secure permissions (0600) and should not be shared.