Installation
There are several ways to run Cove depending on your needs.
Quick Start (npx)
The easiest way — no installation required:
bash
npx @maudecode/coveOptions:
bash
npx @maudecode/cove --port 3000 # Custom port
npx @maudecode/cove --open # Open browser automaticallyGlobal Install (npm)
Install globally for repeated use:
bash
npm install -g @maudecode/cove
coveDocker
Run Cove in a container:
bash
docker run -p 8080:8080 ghcr.io/maudecode/cove:latestWith custom gateway:
bash
docker run -p 8080:8080 \
-e GATEWAY_HOST=your-gateway.local \
-e GATEWAY_PORT=18789 \
ghcr.io/maudecode/cove:latestFrom Source
For development or customization:
bash
git clone https://github.com/MaudeCode/cove.git
cd cove
bun install
bun run devEnvironment Variables
| Variable | Default | Description |
|---|---|---|
GATEWAY_HOST | 127.0.0.1 | Gateway hostname for canvas proxy |
GATEWAY_PORT | 18789 | Gateway port for canvas proxy |
Next Steps
- Deployment — Production deployment options
- Canvas Setup — Enable canvas for agent content
