70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
33 lines
595 B
TypeScript
33 lines
595 B
TypeScript
import type { TemplateConfig } from "../../src/templates";
|
|
|
|
const config: TemplateConfig = {
|
|
configVersion: 1,
|
|
id: "queues",
|
|
displayName: "Queue consumer & producer Worker",
|
|
description:
|
|
"Get started with a Worker that processes background tasks and message batches with Cloudflare Queues",
|
|
platform: "workers",
|
|
copyFiles: {
|
|
variants: {
|
|
js: {
|
|
path: "./js",
|
|
},
|
|
ts: {
|
|
path: "./ts",
|
|
},
|
|
},
|
|
},
|
|
bindings: {
|
|
queues: [
|
|
{
|
|
boundVariable: "MY_QUEUE",
|
|
defaultValue: "my-queue",
|
|
producer: true,
|
|
consumer: true,
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default config;
|