mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 10:05:18 +00:00
33 lines
650 B
JSON
33 lines
650 B
JSON
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "sandbox-agent-cloudflare",
|
|
"main": "src/index.ts",
|
|
"compatibility_date": "2025-01-01",
|
|
"compatibility_flags": ["nodejs_compat"],
|
|
"assets": {
|
|
"directory": "./dist",
|
|
"binding": "ASSETS"
|
|
},
|
|
"containers": [
|
|
{
|
|
"class_name": "Sandbox",
|
|
"image": "./Dockerfile",
|
|
"instance_type": "lite",
|
|
"max_instances": 1
|
|
}
|
|
],
|
|
"durable_objects": {
|
|
"bindings": [
|
|
{
|
|
"class_name": "Sandbox",
|
|
"name": "Sandbox"
|
|
}
|
|
]
|
|
},
|
|
"migrations": [
|
|
{
|
|
"new_sqlite_classes": ["Sandbox"],
|
|
"tag": "v1"
|
|
}
|
|
]
|
|
}
|