Skip to content

CLI Installation

The ZevCloud CLI lets you deploy, manage services, and view logs from your terminal.

Install

bash
npm install -g @zevcloud/cli

Or use without installing:

bash
npx @zevcloud/cli login

Authentication

Generate an API key from Dashboard → Settings → Security → API Keys.

Then authenticate:

bash
zevcloud login

Paste your API key when prompted. The CLI validates it against the API and stores it locally.

Verify

bash
zevcloud whoami

Output:

  ZevCloud CLI
  Team: Daniel's Team
  API URL: https://api.zevcloud.net/v1
  Key: sk_live_30a1...

Quick Deploy

bash
# List your services
zevcloud services

# Deploy a service
zevcloud deploy <serviceId>

# View logs
zevcloud logs <serviceId> -f

Configuration

Set a custom API URL (for self-hosted or sandbox):

bash
zevcloud config --api-url https://zevcloud-apisandbox.zevop.net/v1

Next Steps

Powered by ZevOP Technologies