Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions content/Reference/CLI/debugging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ agentuity cloud ssh proj_abc123xyz
# SSH into specific deployment
agentuity cloud ssh dep_abc123xyz

# SSH into a sandbox
agentuity cloud ssh sbx_abc123xyz

# Run a command and exit
agentuity cloud ssh 'ps aux'

Expand Down
35 changes: 16 additions & 19 deletions content/Reference/CLI/deployment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,6 @@ Removing a deployment permanently deletes it. You cannot rollback to a removed d

## Custom Domains

You can configure custom domains using either the configuration file or CLI commands.

### Option 1: Configuration File

Configure custom domains in `agentuity.json`:

```json
Expand Down Expand Up @@ -313,25 +309,26 @@ After deployment with custom domains, the CLI only shows custom URLs:

The project URL and deployment-specific URLs still exist but custom domains take precedence in the output.

### Option 2: CLI Commands

Manage custom domains directly from the CLI:

```bash
# List configured domains
agentuity cloud domain list

# Add a domain
agentuity cloud domain add api.example.com
## Resource Configuration

# Remove a domain
agentuity cloud domain remove api.example.com
Configure CPU, memory, and disk limits in `agentuity.json`:

# Verify DNS configuration
agentuity cloud domain verify api.example.com
```json
{
"deployment": {
"resources": {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we want to put "domains": [] to show that you can configure domains? i believe that is now the default when i create a new project

"cpu": "500m",
"memory": "512Mi",
"disk": "1Gi"
},
"domains": []
}
}
```

Use the configuration file for domains that should persist across deployments. Use CLI commands for quick testing or temporary domains.
**Defaults:** `cpu: "500m"`, `memory: "500Mi"`, `disk: "500Mi"`. Increase as needed for your workload.

The `domains` array is empty by default. Add custom domains when needed (see [Custom Domains](#custom-domains)).

## Environment Variables

Expand Down
8 changes: 8 additions & 0 deletions content/Reference/CLI/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ Check your authentication status:
agentuity auth whoami
```

### Get Your API Key

Display the API key for your authenticated account:

```bash
agentuity auth apikey
```

### Create a New Account

Sign up for a new Agentuity account directly from the CLI:
Expand Down
2 changes: 1 addition & 1 deletion content/Reference/CLI/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ See [Getting Started](/Reference/CLI/getting-started) for installation options,
| [Getting Started](/Reference/CLI/getting-started) | `login`, `logout`, `new` | Install, authenticate, create projects |
| [Development](/Reference/CLI/development) | `dev` | Local development server |
| [Deployment](/Reference/CLI/deployment) | `deploy`, `cloud project` | Deploy and manage cloud projects |
| [Storage](/Reference/CLI/storage) | `cloud kv`, `cloud vector`, `cloud object`, `cloud redis` | Manage KV, vector, object, and Redis storage |
| [Storage](/Reference/CLI/storage) | `cloud kv`, `cloud vector`, `cloud s3`, `cloud redis` | Manage KV, vector, object, and Redis storage |
| [Configuration](/Reference/CLI/configuration) | `cloud env`, `cloud secret`, `cloud apikey` | Manage env vars, secrets, and API keys |
| [Debugging](/Reference/CLI/debugging) | `cloud ssh`, `cloud session` | SSH access, session inspection |
| [AI Commands](/Reference/CLI/ai-commands) | `ai` | AI coding agent utilities |
Expand Down
Loading