For the complete documentation index, see llms.txt. This page is also available as Markdown.

Quick Start

Get up and running in 3 steps.

Step 1: Install

curl -fsSL https://raw.githubusercontent.com/AceCloudAI/ace-cli-releases/main/install.sh | bash

Step 2: Configure

The recommended setup is the interactive ace configure wizard — it walks you through region, project, auth method, and credentials in one prompt sequence (modeled on aws configure):

ace configure

For long-lived automation, create an API key in the portal (Settings > API Keys, or ace api-key create once logged in) and pick api-key when the wizard asks. API keys last 90 days and don't need the 24-hour JWT refresh dance.

Alternatively, log in with a developer token directly:

ace auth login-token --token <your-developer-token>

The CLI verifies the credential before saving, then auto-configures your project and region.

Step 3: Start Using

# See all your resources
ace get-all

# List instances
ace instance list

# List available flavors (instance sizes)
ace flavor list

# Check quotas
ace quota all

Your First VM

Your First K8s Cluster

Your First Container Deployment

Last updated