From ae0b5dd19bdf440115642d789674c8dfcbd03ab0 Mon Sep 17 00:00:00 2001 From: f-trycua Date: Tue, 18 Nov 2025 13:17:42 +0100 Subject: [PATCH] Update quickstart examples to use sandbox naming MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace example sandbox names from "my-vm-abc123" to "my-sandbox-abc123" for consistency with the VM → Sandbox refactoring. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docs/content/docs/get-started/quickstart.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/content/docs/get-started/quickstart.mdx b/docs/content/docs/get-started/quickstart.mdx index 981dd674..3beeb073 100644 --- a/docs/content/docs/get-started/quickstart.mdx +++ b/docs/content/docs/get-started/quickstart.mdx @@ -482,9 +482,9 @@ cua create --os windows --configuration small --region north-america Your sandbox will be created and you'll see output like: ``` -Sandbox created and ready: my-vm-abc123 +Sandbox created and ready: my-sandbox-abc123 Password: secure-password-here -Host: my-vm-abc123.containers.cloud.trycua.com +Host: my-sandbox-abc123.containers.cloud.trycua.com ``` @@ -500,7 +500,7 @@ You can now interact with your sandbox in multiple ways: #### Option 1: Access VNC Desktop ```bash -cua open my-vm-abc123 +cua open my-sandbox-abc123 ``` This opens a remote desktop connection to your sandbox. @@ -512,11 +512,11 @@ This opens a remote desktop connection to your sandbox. cua list # Start/stop sandboxes as needed -cua stop my-vm-abc123 -cua start my-vm-abc123 +cua stop my-sandbox-abc123 +cua start my-sandbox-abc123 # Delete sandboxes when done -cua delete my-vm-abc123 +cua delete my-sandbox-abc123 ```