← Back to Documentation
CLI
Deploy and manage your projects from the command line.
Coming soon. The CupaDev CLI is under development. For now, use the dashboard or the REST API to manage your projects.
Planned Commands
| Command | Description |
|---|---|
| cupadev deploy | Trigger a new deployment from current directory |
| cupadev logs | Stream pod logs in real-time |
| cupadev env ls / add / rm | Manage environment variables |
| cupadev domains | Manage custom domains |
| cupadev rollback | Roll back to a previous deployment |
| cupadev whoami | Show current authenticated user |
Use the REST API in the meantime
All dashboard actions are available via the REST API. Authenticate with a Bearer token from your account settings.
# Trigger a deployment
curl -X POST https://api.cupadev.com/deployments/trigger \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"projectId": "YOUR_PROJECT_ID"}'