mirror of
https://github.com/blackboxprogramming/blackroad-container.git
synced 2026-03-18 05:34:00 -05:00
33 lines
581 B
JSON
33 lines
581 B
JSON
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "blackroad-container",
|
|
"main": "src/index.ts",
|
|
"compatibility_date": "2025-10-08",
|
|
"compatibility_flags": ["nodejs_compat"],
|
|
"observability": {
|
|
"enabled": true
|
|
},
|
|
"containers": [
|
|
{
|
|
"class_name": "MyContainer",
|
|
"image": "./Dockerfile",
|
|
"max_instances": 10
|
|
}
|
|
],
|
|
"durable_objects": {
|
|
"bindings": [
|
|
{
|
|
"class_name": "MyContainer",
|
|
"name": "MY_CONTAINER"
|
|
}
|
|
]
|
|
},
|
|
"migrations": [
|
|
{
|
|
"new_sqlite_classes": ["MyContainer"],
|
|
"tag": "v1"
|
|
}
|
|
],
|
|
"upload_source_maps": true
|
|
}
|