mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 13:03:46 +00:00
21 lines
435 B
Text
21 lines
435 B
Text
---
|
|
title: "Vercel Sandboxes"
|
|
description: "Run the daemon inside Vercel Sandboxes."
|
|
---
|
|
|
|
## Steps
|
|
|
|
1. Provision a Vercel Sandbox with network access and storage.
|
|
2. Install the agent binaries you need.
|
|
3. Run the daemon and expose the port.
|
|
|
|
```bash
|
|
export SANDBOX_TOKEN="..."
|
|
|
|
cargo run -p sandbox-agent -- server \
|
|
--token "$SANDBOX_TOKEN" \
|
|
--host 0.0.0.0 \
|
|
--port 2468
|
|
```
|
|
|
|
4. Configure your client to use the sandbox URL.
|