config
Synopsis
Section titled “Synopsis”codeteleport config # show current configcodeteleport config set <key> <value> # update a settingDescription
Section titled “Description”The config command displays your current configuration with a redacted token. Use config set to update individual settings without going through the full setup wizard.
Settable keys
Section titled “Settable keys”| Key | Description | Example |
|---|---|---|
agent | Coding agent ID | claude-code |
deviceName | Name for this machine | work-laptop |
apiUrl | API server URL | https://api.codeteleport.com/v1 |
The token field is not settable via config. Use codeteleport auth login or codeteleport setup to authenticate.
Examples
Section titled “Examples”View config
Section titled “View config”$ codeteleport config
CodeTeleport Configuration
agent : claude-code (Claude Code) deviceName : work-laptop apiUrl : https://api.codeteleport.com/v1 token : ctk_live_...f456 (set)Update device name
Section titled “Update device name”$ codeteleport config set deviceName home-desktopSet deviceName = home-desktopPoint to local dev server
Section titled “Point to local dev server”$ codeteleport config set apiUrl http://localhost:8787/v1Set apiUrl = http://localhost:8787/v1Invalid key
Section titled “Invalid key”$ codeteleport config set token my-tokenToken is not settable via config. Use `codeteleport auth login` instead.
$ codeteleport config set unknown valueUnknown config key: unknownSettable keys: agent, deviceName, apiUrlRelated commands
Section titled “Related commands”codeteleport setup— full onboarding wizardcodeteleport auth— manage authenticationcodeteleport status— verify your config is working