create-cloudflare 0.0.0-e3990bbf → 0.0.0-e3a57616
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -52
- package/dist/cli.js +75718 -58534
- package/package.json +26 -13
- package/templates/angular/c3.ts +100 -0
- package/{dist/angular/templates/src/main.server.ts → templates/angular/templates/server.ts} +14 -15
- package/templates/angular/templates/tools/alter-polyfills.mjs +27 -0
- package/templates/angular/templates/tools/copy-files.mjs +9 -0
- package/templates/astro/c3.ts +50 -0
- package/templates/chatgptPlugin/c3.ts +10 -0
- package/templates/chatgptPlugin/ts/__dot__gitignore +171 -0
- package/templates/chatgptPlugin/ts/package.json +1 -1
- package/templates/common/c3.ts +15 -0
- package/templates/common/js/__dot__gitignore +172 -0
- package/templates/common/js/package.json +1 -0
- package/templates/common/js/wrangler.toml +1 -1
- package/templates/common/ts/__dot__gitignore +172 -0
- package/templates/common/ts/package.json +1 -1
- package/templates/common/ts/wrangler.toml +1 -1
- package/templates/docusaurus/c3.ts +27 -0
- package/templates/gatsby/c3.ts +46 -0
- package/templates/hello-world/c3.ts +15 -0
- package/templates/hello-world/js/__dot__gitignore +172 -0
- package/templates/hello-world/js/package.json +1 -0
- package/templates/hello-world/js/wrangler.toml +1 -1
- package/templates/hello-world/ts/__dot__gitignore +172 -0
- package/templates/hello-world/ts/package.json +1 -1
- package/templates/hello-world/ts/wrangler.toml +1 -1
- package/templates/hello-world-durable-object/c3.ts +15 -0
- package/templates/hello-world-durable-object/js/.editorconfig +13 -0
- package/templates/hello-world-durable-object/js/.prettierrc +6 -0
- package/templates/hello-world-durable-object/js/__dot__gitignore +172 -0
- package/templates/hello-world-durable-object/js/package.json +13 -0
- package/templates/hello-world-durable-object/js/src/index.js +65 -0
- package/templates/hello-world-durable-object/js/wrangler.toml +51 -0
- package/templates/hello-world-durable-object/ts/.editorconfig +13 -0
- package/templates/hello-world-durable-object/ts/.prettierrc +6 -0
- package/templates/hello-world-durable-object/ts/__dot__gitignore +172 -0
- package/templates/hello-world-durable-object/ts/package.json +15 -0
- package/templates/hello-world-durable-object/ts/src/index.ts +78 -0
- package/templates/hello-world-durable-object/ts/tsconfig.json +101 -0
- package/templates/hello-world-durable-object/ts/wrangler.toml +51 -0
- package/templates/hono/c3.ts +25 -0
- package/templates/next/c3.ts +211 -0
- package/templates/next/templates.ts +281 -0
- package/templates/nuxt/c3.ts +59 -0
- package/templates/openapi/c3.ts +10 -0
- package/templates/openapi/ts/__dot__gitignore +171 -0
- package/templates/openapi/ts/package.json +1 -1
- package/templates/openapi/ts/src/endpoints/taskList.ts +1 -1
- package/templates/openapi/ts/src/index.ts +2 -2
- package/templates/pre-existing/c3.ts +85 -0
- package/templates/pre-existing/js/.editorconfig +13 -0
- package/templates/pre-existing/js/.prettierrc +6 -0
- package/templates/pre-existing/js/__dot__gitignore +172 -0
- package/templates/pre-existing/js/package.json +13 -0
- package/templates/pre-existing/js/wrangler.toml +3 -0
- package/templates/queues/c3.ts +25 -0
- package/templates/queues/js/__dot__gitignore +172 -0
- package/templates/queues/js/package.json +1 -0
- package/templates/queues/ts/__dot__gitignore +172 -0
- package/templates/queues/ts/package.json +1 -1
- package/templates/qwik/c3.ts +36 -0
- package/templates/react/c3.ts +29 -0
- package/templates/remix/c3.ts +33 -0
- package/templates/scheduled/c3.ts +15 -0
- package/templates/scheduled/js/__dot__gitignore +172 -0
- package/templates/scheduled/js/package.json +1 -0
- package/templates/scheduled/js/wrangler.toml +1 -1
- package/templates/scheduled/ts/__dot__gitignore +172 -0
- package/templates/scheduled/ts/package.json +1 -1
- package/templates/scheduled/ts/wrangler.toml +1 -1
- package/templates/solid/c3.ts +48 -0
- package/templates/solid/js/vite.config.js +7 -0
- package/templates/solid/ts/vite.config.ts +7 -0
- package/templates/svelte/c3.ts +75 -0
- package/templates/svelte/templates.ts +13 -0
- package/templates/vue/c3.ts +27 -0
- package/dist/angular/templates/tools/bundle.mjs +0 -77
- package/dist/angular/templates/tools/copy-client-files.mjs +0 -4
- package/dist/angular/templates/tools/copy-worker-files.mjs +0 -10
- package/dist/angular/templates/tsconfig.server.json +0 -5
- /package/{dist → templates}/angular/templates/src/_routes.json +0 -0
- /package/{dist → templates}/angular/templates/tools/paths.mjs +0 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { readFileSync } from "node:fs";
|
|
2
|
+
import { resolve } from "node:path";
|
|
3
|
+
import { logRaw } from "@cloudflare/cli";
|
|
4
|
+
import { brandColor, dim } from "@cloudflare/cli/colors";
|
|
5
|
+
import { spinner } from "@cloudflare/cli/interactive";
|
|
6
|
+
import { runFrameworkGenerator } from "helpers/command";
|
|
7
|
+
import { compatDateFlag, writeFile } from "helpers/files";
|
|
8
|
+
import { detectPackageManager } from "helpers/packages";
|
|
9
|
+
import type { TemplateConfig } from "../../src/templates";
|
|
10
|
+
import type { C3Context } from "types";
|
|
11
|
+
|
|
12
|
+
const { npm } = detectPackageManager();
|
|
13
|
+
|
|
14
|
+
const generate = async (ctx: C3Context) => {
|
|
15
|
+
const gitFlag = ctx.args.git ? `--gitInit` : `--no-gitInit`;
|
|
16
|
+
|
|
17
|
+
await runFrameworkGenerator(ctx, [
|
|
18
|
+
"init",
|
|
19
|
+
ctx.project.name,
|
|
20
|
+
"--packageManager",
|
|
21
|
+
npm,
|
|
22
|
+
gitFlag,
|
|
23
|
+
]);
|
|
24
|
+
|
|
25
|
+
writeFile("./.node-version", "17");
|
|
26
|
+
|
|
27
|
+
logRaw(""); // newline
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const configure = async (ctx: C3Context) => {
|
|
31
|
+
const configFileName = "nuxt.config.ts";
|
|
32
|
+
const configFilePath = resolve(configFileName);
|
|
33
|
+
const s = spinner();
|
|
34
|
+
s.start(`Updating \`${configFileName}\``);
|
|
35
|
+
// Add the cloudflare preset into the configuration file.
|
|
36
|
+
const originalConfigFile = readFileSync(configFilePath, "utf8");
|
|
37
|
+
const updatedConfigFile = originalConfigFile.replace(
|
|
38
|
+
"defineNuxtConfig({",
|
|
39
|
+
"defineNuxtConfig({\n nitro: {\n preset: 'cloudflare-pages'\n },"
|
|
40
|
+
);
|
|
41
|
+
writeFile(configFilePath, updatedConfigFile);
|
|
42
|
+
s.stop(`${brandColor(`updated`)} ${dim(`\`${configFileName}\``)}`);
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
const config: TemplateConfig = {
|
|
46
|
+
configVersion: 1,
|
|
47
|
+
id: "nuxt",
|
|
48
|
+
platform: "pages",
|
|
49
|
+
displayName: "Nuxt",
|
|
50
|
+
generate,
|
|
51
|
+
configure,
|
|
52
|
+
transformPackageJson: async () => ({
|
|
53
|
+
scripts: {
|
|
54
|
+
"pages:dev": `wrangler pages dev ${await compatDateFlag()} --proxy 3000 -- ${npm} run dev`,
|
|
55
|
+
"pages:deploy": `${npm} run build && wrangler pages deploy ./dist`,
|
|
56
|
+
},
|
|
57
|
+
}),
|
|
58
|
+
};
|
|
59
|
+
export default config;
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# Logs
|
|
2
|
+
|
|
3
|
+
logs
|
|
4
|
+
_.log
|
|
5
|
+
npm-debug.log_
|
|
6
|
+
yarn-debug.log*
|
|
7
|
+
yarn-error.log*
|
|
8
|
+
lerna-debug.log*
|
|
9
|
+
.pnpm-debug.log*
|
|
10
|
+
|
|
11
|
+
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
12
|
+
|
|
13
|
+
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
|
|
14
|
+
|
|
15
|
+
# Runtime data
|
|
16
|
+
|
|
17
|
+
pids
|
|
18
|
+
_.pid
|
|
19
|
+
_.seed
|
|
20
|
+
\*.pid.lock
|
|
21
|
+
|
|
22
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
23
|
+
|
|
24
|
+
lib-cov
|
|
25
|
+
|
|
26
|
+
# Coverage directory used by tools like istanbul
|
|
27
|
+
|
|
28
|
+
coverage
|
|
29
|
+
\*.lcov
|
|
30
|
+
|
|
31
|
+
# nyc test coverage
|
|
32
|
+
|
|
33
|
+
.nyc_output
|
|
34
|
+
|
|
35
|
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
36
|
+
|
|
37
|
+
.grunt
|
|
38
|
+
|
|
39
|
+
# Bower dependency directory (https://bower.io/)
|
|
40
|
+
|
|
41
|
+
bower_components
|
|
42
|
+
|
|
43
|
+
# node-waf configuration
|
|
44
|
+
|
|
45
|
+
.lock-wscript
|
|
46
|
+
|
|
47
|
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
48
|
+
|
|
49
|
+
build/Release
|
|
50
|
+
|
|
51
|
+
# Dependency directories
|
|
52
|
+
|
|
53
|
+
node_modules/
|
|
54
|
+
jspm_packages/
|
|
55
|
+
|
|
56
|
+
# Snowpack dependency directory (https://snowpack.dev/)
|
|
57
|
+
|
|
58
|
+
web_modules/
|
|
59
|
+
|
|
60
|
+
# TypeScript cache
|
|
61
|
+
|
|
62
|
+
\*.tsbuildinfo
|
|
63
|
+
|
|
64
|
+
# Optional npm cache directory
|
|
65
|
+
|
|
66
|
+
.npm
|
|
67
|
+
|
|
68
|
+
# Optional eslint cache
|
|
69
|
+
|
|
70
|
+
.eslintcache
|
|
71
|
+
|
|
72
|
+
# Optional stylelint cache
|
|
73
|
+
|
|
74
|
+
.stylelintcache
|
|
75
|
+
|
|
76
|
+
# Microbundle cache
|
|
77
|
+
|
|
78
|
+
.rpt2_cache/
|
|
79
|
+
.rts2_cache_cjs/
|
|
80
|
+
.rts2_cache_es/
|
|
81
|
+
.rts2_cache_umd/
|
|
82
|
+
|
|
83
|
+
# Optional REPL history
|
|
84
|
+
|
|
85
|
+
.node_repl_history
|
|
86
|
+
|
|
87
|
+
# Output of 'npm pack'
|
|
88
|
+
|
|
89
|
+
\*.tgz
|
|
90
|
+
|
|
91
|
+
# Yarn Integrity file
|
|
92
|
+
|
|
93
|
+
.yarn-integrity
|
|
94
|
+
|
|
95
|
+
# dotenv environment variable files
|
|
96
|
+
|
|
97
|
+
.env
|
|
98
|
+
.env.development.local
|
|
99
|
+
.env.test.local
|
|
100
|
+
.env.production.local
|
|
101
|
+
.env.local
|
|
102
|
+
|
|
103
|
+
# parcel-bundler cache (https://parceljs.org/)
|
|
104
|
+
|
|
105
|
+
.cache
|
|
106
|
+
.parcel-cache
|
|
107
|
+
|
|
108
|
+
# Next.js build output
|
|
109
|
+
|
|
110
|
+
.next
|
|
111
|
+
out
|
|
112
|
+
|
|
113
|
+
# Nuxt.js build / generate output
|
|
114
|
+
|
|
115
|
+
.nuxt
|
|
116
|
+
dist
|
|
117
|
+
|
|
118
|
+
# Gatsby files
|
|
119
|
+
|
|
120
|
+
.cache/
|
|
121
|
+
|
|
122
|
+
# Comment in the public line in if your project uses Gatsby and not Next.js
|
|
123
|
+
|
|
124
|
+
# https://nextjs.org/blog/next-9-1#public-directory-support
|
|
125
|
+
|
|
126
|
+
# public
|
|
127
|
+
|
|
128
|
+
# vuepress build output
|
|
129
|
+
|
|
130
|
+
.vuepress/dist
|
|
131
|
+
|
|
132
|
+
# vuepress v2.x temp and cache directory
|
|
133
|
+
|
|
134
|
+
.temp
|
|
135
|
+
.cache
|
|
136
|
+
|
|
137
|
+
# Docusaurus cache and generated files
|
|
138
|
+
|
|
139
|
+
.docusaurus
|
|
140
|
+
|
|
141
|
+
# Serverless directories
|
|
142
|
+
|
|
143
|
+
.serverless/
|
|
144
|
+
|
|
145
|
+
# FuseBox cache
|
|
146
|
+
|
|
147
|
+
.fusebox/
|
|
148
|
+
|
|
149
|
+
# DynamoDB Local files
|
|
150
|
+
|
|
151
|
+
.dynamodb/
|
|
152
|
+
|
|
153
|
+
# TernJS port file
|
|
154
|
+
|
|
155
|
+
.tern-port
|
|
156
|
+
|
|
157
|
+
# Stores VSCode versions used for testing VSCode extensions
|
|
158
|
+
|
|
159
|
+
.vscode-test
|
|
160
|
+
|
|
161
|
+
# yarn v2
|
|
162
|
+
|
|
163
|
+
.yarn/cache
|
|
164
|
+
.yarn/unplugged
|
|
165
|
+
.yarn/build-state.yml
|
|
166
|
+
.yarn/install-state.gz
|
|
167
|
+
.pnp.\*
|
|
168
|
+
|
|
169
|
+
# wrangler project
|
|
170
|
+
|
|
171
|
+
.dev.vars
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"private": true,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"deploy": "wrangler deploy",
|
|
7
|
+
"dev": "wrangler dev",
|
|
7
8
|
"start": "wrangler dev"
|
|
8
9
|
},
|
|
9
10
|
"dependencies": {
|
|
10
11
|
"@cloudflare/itty-router-openapi": "^1.0.1"
|
|
11
12
|
},
|
|
12
13
|
"devDependencies": {
|
|
13
|
-
"@cloudflare/workers-types": "^4.20230821.0",
|
|
14
14
|
"@types/node": "^20.5.7",
|
|
15
15
|
"@types/service-worker-mock": "^2.0.1",
|
|
16
16
|
"wrangler": "^3.0.0"
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OpenAPIRouter } from "@cloudflare/itty-router-openapi";
|
|
2
|
-
import { TaskList } from "./endpoints/taskList";
|
|
3
2
|
import { TaskCreate } from "./endpoints/taskCreate";
|
|
4
|
-
import { TaskFetch } from "./endpoints/taskFetch";
|
|
5
3
|
import { TaskDelete } from "./endpoints/taskDelete";
|
|
4
|
+
import { TaskFetch } from "./endpoints/taskFetch";
|
|
5
|
+
import { TaskList } from "./endpoints/taskList";
|
|
6
6
|
|
|
7
7
|
export const router = OpenAPIRouter({
|
|
8
8
|
docs_url: "/",
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { cp, mkdtemp, readdir, rm } from "fs/promises";
|
|
2
|
+
import { tmpdir } from "os";
|
|
3
|
+
import { join } from "path";
|
|
4
|
+
import { crash } from "@cloudflare/cli";
|
|
5
|
+
import { processArgument } from "@cloudflare/cli/args";
|
|
6
|
+
import { brandColor, dim } from "@cloudflare/cli/colors";
|
|
7
|
+
import { runCommand } from "helpers/command";
|
|
8
|
+
import { detectPackageManager } from "helpers/packages";
|
|
9
|
+
import { chooseAccount } from "../../src/common";
|
|
10
|
+
import type { C3Context } from "types";
|
|
11
|
+
|
|
12
|
+
export async function copyExistingWorkerFiles(ctx: C3Context) {
|
|
13
|
+
const { dlx, npm } = detectPackageManager();
|
|
14
|
+
|
|
15
|
+
await chooseAccount(ctx);
|
|
16
|
+
|
|
17
|
+
if (ctx.args.existingScript === undefined) {
|
|
18
|
+
ctx.args.existingScript = await processArgument<string>(
|
|
19
|
+
ctx.args,
|
|
20
|
+
"existingScript",
|
|
21
|
+
{
|
|
22
|
+
type: "text",
|
|
23
|
+
question:
|
|
24
|
+
"Please specify the name of the existing worker in this account?",
|
|
25
|
+
label: "worker",
|
|
26
|
+
defaultValue: ctx.project.name,
|
|
27
|
+
}
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// `wrangler init --from-dash` bails if you opt-out of creating a package.json
|
|
32
|
+
// so run it (with -y) in a tempdir and copy the src files after
|
|
33
|
+
const tempdir = await mkdtemp(join(tmpdir(), "c3-wrangler-init--from-dash-"));
|
|
34
|
+
await runCommand(
|
|
35
|
+
[
|
|
36
|
+
...dlx,
|
|
37
|
+
"wrangler@3",
|
|
38
|
+
"init",
|
|
39
|
+
"--from-dash",
|
|
40
|
+
ctx.args.existingScript,
|
|
41
|
+
"-y",
|
|
42
|
+
"--no-delegate-c3",
|
|
43
|
+
],
|
|
44
|
+
{
|
|
45
|
+
silent: true,
|
|
46
|
+
cwd: tempdir, // use a tempdir because we don't want all the files
|
|
47
|
+
env: { CLOUDFLARE_ACCOUNT_ID: ctx.account?.id },
|
|
48
|
+
startText: "Downloading existing worker files",
|
|
49
|
+
doneText: `${brandColor("downloaded")} ${dim(
|
|
50
|
+
`existing "${ctx.args.existingScript}" worker files`
|
|
51
|
+
)}`,
|
|
52
|
+
}
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
// copy src/* files from the downloaded worker
|
|
56
|
+
await cp(
|
|
57
|
+
join(tempdir, ctx.args.existingScript, "src"),
|
|
58
|
+
join(ctx.project.path, "src"),
|
|
59
|
+
{ recursive: true }
|
|
60
|
+
);
|
|
61
|
+
|
|
62
|
+
// copy wrangler.toml from the downloaded worker
|
|
63
|
+
await cp(
|
|
64
|
+
join(tempdir, ctx.args.existingScript, "wrangler.toml"),
|
|
65
|
+
join(ctx.project.path, "wrangler.toml")
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export default {
|
|
70
|
+
configVersion: 1,
|
|
71
|
+
id: "pre-existing",
|
|
72
|
+
displayName: "Pre-existing Worker (from Dashboard)",
|
|
73
|
+
platform: "workers",
|
|
74
|
+
hidden: true,
|
|
75
|
+
languages: ["js"],
|
|
76
|
+
copyFiles: {
|
|
77
|
+
path: "./js",
|
|
78
|
+
},
|
|
79
|
+
configure: async (ctx: C3Context) => {
|
|
80
|
+
await copyExistingWorkerFiles(ctx);
|
|
81
|
+
|
|
82
|
+
// Force no-deploy since the worker is already deployed
|
|
83
|
+
ctx.args.deploy = false;
|
|
84
|
+
},
|
|
85
|
+
};
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# Logs
|
|
2
|
+
|
|
3
|
+
logs
|
|
4
|
+
_.log
|
|
5
|
+
npm-debug.log_
|
|
6
|
+
yarn-debug.log*
|
|
7
|
+
yarn-error.log*
|
|
8
|
+
lerna-debug.log*
|
|
9
|
+
.pnpm-debug.log*
|
|
10
|
+
|
|
11
|
+
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
12
|
+
|
|
13
|
+
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
|
|
14
|
+
|
|
15
|
+
# Runtime data
|
|
16
|
+
|
|
17
|
+
pids
|
|
18
|
+
_.pid
|
|
19
|
+
_.seed
|
|
20
|
+
\*.pid.lock
|
|
21
|
+
|
|
22
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
23
|
+
|
|
24
|
+
lib-cov
|
|
25
|
+
|
|
26
|
+
# Coverage directory used by tools like istanbul
|
|
27
|
+
|
|
28
|
+
coverage
|
|
29
|
+
\*.lcov
|
|
30
|
+
|
|
31
|
+
# nyc test coverage
|
|
32
|
+
|
|
33
|
+
.nyc_output
|
|
34
|
+
|
|
35
|
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
36
|
+
|
|
37
|
+
.grunt
|
|
38
|
+
|
|
39
|
+
# Bower dependency directory (https://bower.io/)
|
|
40
|
+
|
|
41
|
+
bower_components
|
|
42
|
+
|
|
43
|
+
# node-waf configuration
|
|
44
|
+
|
|
45
|
+
.lock-wscript
|
|
46
|
+
|
|
47
|
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
48
|
+
|
|
49
|
+
build/Release
|
|
50
|
+
|
|
51
|
+
# Dependency directories
|
|
52
|
+
|
|
53
|
+
node_modules/
|
|
54
|
+
jspm_packages/
|
|
55
|
+
|
|
56
|
+
# Snowpack dependency directory (https://snowpack.dev/)
|
|
57
|
+
|
|
58
|
+
web_modules/
|
|
59
|
+
|
|
60
|
+
# TypeScript cache
|
|
61
|
+
|
|
62
|
+
\*.tsbuildinfo
|
|
63
|
+
|
|
64
|
+
# Optional npm cache directory
|
|
65
|
+
|
|
66
|
+
.npm
|
|
67
|
+
|
|
68
|
+
# Optional eslint cache
|
|
69
|
+
|
|
70
|
+
.eslintcache
|
|
71
|
+
|
|
72
|
+
# Optional stylelint cache
|
|
73
|
+
|
|
74
|
+
.stylelintcache
|
|
75
|
+
|
|
76
|
+
# Microbundle cache
|
|
77
|
+
|
|
78
|
+
.rpt2_cache/
|
|
79
|
+
.rts2_cache_cjs/
|
|
80
|
+
.rts2_cache_es/
|
|
81
|
+
.rts2_cache_umd/
|
|
82
|
+
|
|
83
|
+
# Optional REPL history
|
|
84
|
+
|
|
85
|
+
.node_repl_history
|
|
86
|
+
|
|
87
|
+
# Output of 'npm pack'
|
|
88
|
+
|
|
89
|
+
\*.tgz
|
|
90
|
+
|
|
91
|
+
# Yarn Integrity file
|
|
92
|
+
|
|
93
|
+
.yarn-integrity
|
|
94
|
+
|
|
95
|
+
# dotenv environment variable files
|
|
96
|
+
|
|
97
|
+
.env
|
|
98
|
+
.env.development.local
|
|
99
|
+
.env.test.local
|
|
100
|
+
.env.production.local
|
|
101
|
+
.env.local
|
|
102
|
+
|
|
103
|
+
# parcel-bundler cache (https://parceljs.org/)
|
|
104
|
+
|
|
105
|
+
.cache
|
|
106
|
+
.parcel-cache
|
|
107
|
+
|
|
108
|
+
# Next.js build output
|
|
109
|
+
|
|
110
|
+
.next
|
|
111
|
+
out
|
|
112
|
+
|
|
113
|
+
# Nuxt.js build / generate output
|
|
114
|
+
|
|
115
|
+
.nuxt
|
|
116
|
+
dist
|
|
117
|
+
|
|
118
|
+
# Gatsby files
|
|
119
|
+
|
|
120
|
+
.cache/
|
|
121
|
+
|
|
122
|
+
# Comment in the public line in if your project uses Gatsby and not Next.js
|
|
123
|
+
|
|
124
|
+
# https://nextjs.org/blog/next-9-1#public-directory-support
|
|
125
|
+
|
|
126
|
+
# public
|
|
127
|
+
|
|
128
|
+
# vuepress build output
|
|
129
|
+
|
|
130
|
+
.vuepress/dist
|
|
131
|
+
|
|
132
|
+
# vuepress v2.x temp and cache directory
|
|
133
|
+
|
|
134
|
+
.temp
|
|
135
|
+
.cache
|
|
136
|
+
|
|
137
|
+
# Docusaurus cache and generated files
|
|
138
|
+
|
|
139
|
+
.docusaurus
|
|
140
|
+
|
|
141
|
+
# Serverless directories
|
|
142
|
+
|
|
143
|
+
.serverless/
|
|
144
|
+
|
|
145
|
+
# FuseBox cache
|
|
146
|
+
|
|
147
|
+
.fusebox/
|
|
148
|
+
|
|
149
|
+
# DynamoDB Local files
|
|
150
|
+
|
|
151
|
+
.dynamodb/
|
|
152
|
+
|
|
153
|
+
# TernJS port file
|
|
154
|
+
|
|
155
|
+
.tern-port
|
|
156
|
+
|
|
157
|
+
# Stores VSCode versions used for testing VSCode extensions
|
|
158
|
+
|
|
159
|
+
.vscode-test
|
|
160
|
+
|
|
161
|
+
# yarn v2
|
|
162
|
+
|
|
163
|
+
.yarn/cache
|
|
164
|
+
.yarn/unplugged
|
|
165
|
+
.yarn/build-state.yml
|
|
166
|
+
.yarn/install-state.gz
|
|
167
|
+
.pnp.\*
|
|
168
|
+
|
|
169
|
+
# wrangler project
|
|
170
|
+
|
|
171
|
+
.dev.vars
|
|
172
|
+
.wrangler/
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
configVersion: 1,
|
|
3
|
+
id: "queues",
|
|
4
|
+
displayName: "Queue consumer & producer Worker",
|
|
5
|
+
platform: "workers",
|
|
6
|
+
languages: ["js", "ts"],
|
|
7
|
+
copyFiles: {
|
|
8
|
+
js: {
|
|
9
|
+
path: "./js",
|
|
10
|
+
},
|
|
11
|
+
ts: {
|
|
12
|
+
path: "./ts",
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
bindings: {
|
|
16
|
+
queues: [
|
|
17
|
+
{
|
|
18
|
+
boundVariable: "MY_QUEUE",
|
|
19
|
+
defaultValue: "my-queue",
|
|
20
|
+
producer: true,
|
|
21
|
+
consumer: true,
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
};
|