apso config
View or modify CLI configuration settings.
Usage
apso config # Show all settings
apso config get <key> # Get a specific value
apso config set <key> <value> # Set a value
apso config reset # Reset to defaultsConfiguration keys
| Key | Type | Description | Default |
|---|---|---|---|
apiUrl | string | Platform API URL | https://api.apso.dev |
webUrl | string | Platform web URL | https://app.apso.cloud |
verbose | boolean | Enable verbose output | false |
noColor | boolean | Disable colored output | false |
telemetryDisabled | boolean | Opt out of anonymous telemetry | false |
defaultWorkspace | string | Default workspace slug | (not set) |
Boolean values accept true/false or 1/0.
Environment variables
Environment variables override config file values:
| Variable | Overrides |
|---|---|
APSO_API_URL | apiUrl |
APSO_WEB_URL | webUrl |
APSO_DEBUG=true | verbose |
APSO_NO_COLOR=true | noColor |
Examples
Show all settings:
$ apso config
Current configuration:
apiUrl = https://api.apso.dev (default)
webUrl = https://app.apso.cloud (default)
verbose = false (default)
noColor = false (default)
telemetryDisabled = false (default)
defaultWorkspace = (not set) (default)Enable verbose output:
apso config set verbose trueCheck a single value:
apso config get apiUrlReset everything:
apso config resetConfig file location
Configuration is stored in ~/.apso/config.json. Credentials are stored separately in ~/.apso/credentials.json.
Last updated on