CLI Overview
The Kite CLI is the primary tool for managing your Kiteploy infrastructure.
Global Flags
| Flag |
Description |
--config |
Config file path (default: ~/.config/kite/config.yaml) |
--output, -o |
Output format: table, json, yaml (default: table) |
--verbose, -v |
Enable verbose output |
--no-color |
Disable color output |
--help, -h |
Show help for any command |
Command Structure
kite <resource> <action> [flags]
Available Commands
Shortcuts
| Shortcut |
Equivalent |
kite login |
kite auth login |
kite logout |
kite auth logout |
kite ls |
kite project list |
# Default table output
kite workspace list
# JSON output
kite workspace list -o json
# YAML output
kite workspace list -o yaml
Configuration
# Show current config
kite config show
# Set API endpoint
kite config set-endpoint https://api.kiteploy.com
# Set default output format
kite config set output_format json
# Set active project
kite config set active_project my-project
# Show config file path
kite config path