Skip to Content
🚀 APSO is now in public beta. Get started →

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 defaults

Configuration keys

KeyTypeDescriptionDefault
apiUrlstringPlatform API URLhttps://api.apso.dev
webUrlstringPlatform web URLhttps://app.apso.cloud
verbosebooleanEnable verbose outputfalse
noColorbooleanDisable colored outputfalse
telemetryDisabledbooleanOpt out of anonymous telemetryfalse
defaultWorkspacestringDefault workspace slug(not set)

Boolean values accept true/false or 1/0.

Environment variables

Environment variables override config file values:

VariableOverrides
APSO_API_URLapiUrl
APSO_WEB_URLwebUrl
APSO_DEBUG=trueverbose
APSO_NO_COLOR=truenoColor

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 true

Check a single value:

apso config get apiUrl

Reset everything:

apso config reset

Config file location

Configuration is stored in ~/.apso/config.json. Credentials are stored separately in ~/.apso/credentials.json.

Last updated on