← 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

CommandDescription
cupadev deployTrigger a new deployment from current directory
cupadev logsStream pod logs in real-time
cupadev env ls / add / rmManage environment variables
cupadev domainsManage custom domains
cupadev rollbackRoll back to a previous deployment
cupadev whoamiShow 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"}'
View full REST API reference →