Authentication¶
Authenticate the Kite CLI to manage your Kiteploy resources.
Login¶
Or with email/password:
kite login --email [email protected] --password mypassword
Or with GitHub:
Shortcut: kite login is equivalent to kite auth login.
Check Current User¶
API Keys¶
For CI/CD environments or programmatic access:
# Create an API key
kite auth api-key create my-ci-key
# List API keys
kite auth api-key list
# Use an API key
kite auth api-key use kp_live_xxxxxxxxxxxx
# Delete an API key
kite auth api-key delete <id> --yes
Debug Token¶
Print the current access token (for debugging):
Logout¶
Warning
Logging out removes stored credentials from your machine.
Environment Variables¶
For CI/CD, you can authenticate using environment variables:
| Variable | Description |
|---|---|
KITE_API_KEY |
API key for authentication |