diff --git a/src/content/docs/ai-gateway/integrations/aig-workers-ai-binding.mdx b/src/content/docs/ai-gateway/integrations/aig-workers-ai-binding.mdx index 04ad7fdccf89bbd..b47581f9f1c8da2 100644 --- a/src/content/docs/ai-gateway/integrations/aig-workers-ai-binding.mdx +++ b/src/content/docs/ai-gateway/integrations/aig-workers-ai-binding.mdx @@ -27,7 +27,7 @@ Running `npm create cloudflare@latest` will prompt you to install the create-clo product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/ai-gateway/tutorials/deploy-aig-worker.mdx b/src/content/docs/ai-gateway/tutorials/deploy-aig-worker.mdx index 6c1696496820be5..b635bd187ab07fa 100644 --- a/src/content/docs/ai-gateway/tutorials/deploy-aig-worker.mdx +++ b/src/content/docs/ai-gateway/tutorials/deploy-aig-worker.mdx @@ -40,7 +40,7 @@ Create a Worker project in the command line: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/browser-rendering/workers-binding-api/reuse-sessions.mdx b/src/content/docs/browser-rendering/workers-binding-api/reuse-sessions.mdx index 97a19866dacea06..e4e1d119ef86c91 100644 --- a/src/content/docs/browser-rendering/workers-binding-api/reuse-sessions.mdx +++ b/src/content/docs/browser-rendering/workers-binding-api/reuse-sessions.mdx @@ -28,7 +28,7 @@ Create a new Worker project named `browser-worker` by running: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/browser-rendering/workers-binding-api/screenshots.mdx b/src/content/docs/browser-rendering/workers-binding-api/screenshots.mdx index 03ac0bcc3f3d2a9..da009c3273c4099 100644 --- a/src/content/docs/browser-rendering/workers-binding-api/screenshots.mdx +++ b/src/content/docs/browser-rendering/workers-binding-api/screenshots.mdx @@ -28,7 +28,7 @@ Create a new Worker project named `browser-worker` by running: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript / TypeScript", }} /> diff --git a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/get-started/configuration.mdx b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/get-started/configuration.mdx index 7750a40cacd968f..a0b44b65907f537 100644 --- a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/get-started/configuration.mdx +++ b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/get-started/configuration.mdx @@ -102,7 +102,7 @@ Create your dynamic dispatch Worker. In this example, the dispatch Worker is cal product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> @@ -135,6 +135,7 @@ export default { }, }; ``` + This example shows a simple dynamic dispatch Worker that routes all requests to a single user Worker. For more advanced routing patterns, you could route based on hostname, path, custom metadata, or other request properties. Deploy your dynamic dispatch Worker: diff --git a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/get-started/developing-with-wrangler.mdx b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/get-started/developing-with-wrangler.mdx index 5b886dfa8728cc3..2160adc63c0a79a 100644 --- a/src/content/docs/cloudflare-for-platforms/workers-for-platforms/get-started/developing-with-wrangler.mdx +++ b/src/content/docs/cloudflare-for-platforms/workers-for-platforms/get-started/developing-with-wrangler.mdx @@ -27,7 +27,7 @@ Support for Workers for Platforms with `wrangler dev` in local mode is experimen product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> @@ -77,7 +77,7 @@ dispatch_namespace = "my-namespace" product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> @@ -111,8 +111,6 @@ export default { Update the Wrangler file for dispatch-worker and add the dispatch namespace binding: - - ```toml @@ -139,7 +137,7 @@ outbound = { service = "outbound-worker", parameters = ["paramCustomerName"] } product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/cloudflare-one/identity/authorization-cookie/cors.mdx b/src/content/docs/cloudflare-one/identity/authorization-cookie/cors.mdx index c2669a612f76465..250cebafb4eebb5 100644 --- a/src/content/docs/cloudflare-one/identity/authorization-cookie/cors.mdx +++ b/src/content/docs/cloudflare-one/identity/authorization-cookie/cors.mdx @@ -158,7 +158,7 @@ This will prompt you to install the [`create-cloudflare`](https://www.npmjs.com/ product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx b/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx index 84ef76aa55937ab..b6d49e6654201b7 100644 --- a/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx +++ b/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx @@ -52,7 +52,7 @@ This approach allows you to: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/d1/get-started.mdx b/src/content/docs/d1/get-started.mdx index 07b5cd497802426..6fcf23ccae110fe 100644 --- a/src/content/docs/d1/get-started.mdx +++ b/src/content/docs/d1/get-started.mdx @@ -49,7 +49,7 @@ Create a new Worker as the means to query your database. product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/d1/tutorials/build-a-comments-api/index.mdx b/src/content/docs/d1/tutorials/build-a-comments-api/index.mdx index 863923d456096f8..70129551bee5c8f 100644 --- a/src/content/docs/d1/tutorials/build-a-comments-api/index.mdx +++ b/src/content/docs/d1/tutorials/build-a-comments-api/index.mdx @@ -27,7 +27,7 @@ Use [C3](https://developers.cloudflare.com/learning-paths/workers/get-started/c3 product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/d1/tutorials/build-an-api-to-access-d1/index.mdx b/src/content/docs/d1/tutorials/build-an-api-to-access-d1/index.mdx index 6d463d186e845c1..16ceedc186015b3 100644 --- a/src/content/docs/d1/tutorials/build-an-api-to-access-d1/index.mdx +++ b/src/content/docs/d1/tutorials/build-an-api-to-access-d1/index.mdx @@ -55,7 +55,7 @@ Create a new Worker to create and deploy your API. product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/developer-spotlight/tutorials/custom-access-control-for-files.mdx b/src/content/docs/developer-spotlight/tutorials/custom-access-control-for-files.mdx index 7777369329c3872..354c92b7e77cdc0 100644 --- a/src/content/docs/developer-spotlight/tutorials/custom-access-control-for-files.mdx +++ b/src/content/docs/developer-spotlight/tutorials/custom-access-control-for-files.mdx @@ -41,7 +41,7 @@ To get started developing your Worker you will use the [`create-cloudflare` CLI] product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> @@ -95,8 +95,6 @@ npx wrangler r2 bucket create This works similar to the D1 database creation, where you will need to replace `` with the name you want to use for your bucket. To do this, go to the Wrangler file again and then add the following lines: - - ```toml diff --git a/src/content/docs/durable-objects/get-started/tutorial-with-sql-api.mdx b/src/content/docs/durable-objects/get-started/tutorial-with-sql-api.mdx index d458fcbafcf88b1..206d2fc09c3e38c 100644 --- a/src/content/docs/durable-objects/get-started/tutorial-with-sql-api.mdx +++ b/src/content/docs/durable-objects/get-started/tutorial-with-sql-api.mdx @@ -53,7 +53,7 @@ Running `create cloudflare@latest` will install [Wrangler](/workers/wrangler/ins product="workers" params={{ category: "hello-world", - type: "Hello World Worker Using Durable Objects", + type: "Worker + Durable Objects", lang: "TypeScript", }} /> @@ -229,8 +229,6 @@ Migrations are performed through the `[[migrations]]` configurations key in your The Durable Object migration to create a new Durable Object class with SQLite storage backend will look like the following in your Worker's Wrangler file: - - ```toml diff --git a/src/content/docs/durable-objects/get-started/tutorial.mdx b/src/content/docs/durable-objects/get-started/tutorial.mdx index 8e6dc725af81c59..6b24023470cd826 100644 --- a/src/content/docs/durable-objects/get-started/tutorial.mdx +++ b/src/content/docs/durable-objects/get-started/tutorial.mdx @@ -46,7 +46,7 @@ Running `create cloudflare@latest` will install [Wrangler](/workers/wrangler/ins product="workers" params={{ category: "hello-world", - type: "Hello World Worker using Durable Objects", + type: "Worker + Durable Objects", lang: "JavaScript / TypeScript", }} /> @@ -205,8 +205,6 @@ Migrations are performed through the `[[migrations]]` configurations key in your The Durable Object migration to create a new Durable Object class will look like the following in your Worker's Wrangler file: - - ```toml @@ -229,8 +227,6 @@ A Durable Object class can only have a single storage type, which cannot be chan To configure SQL storage and API, replace `new_classes` with `new_sqlite_classes` in your Worker's Wrangler file: - - ```toml diff --git a/src/content/docs/durable-objects/tutorials/build-a-seat-booking-app/index.mdx b/src/content/docs/durable-objects/tutorials/build-a-seat-booking-app/index.mdx index ae07e4dde0d7e3e..ac115b0a9e16de9 100644 --- a/src/content/docs/durable-objects/tutorials/build-a-seat-booking-app/index.mdx +++ b/src/content/docs/durable-objects/tutorials/build-a-seat-booking-app/index.mdx @@ -62,7 +62,7 @@ Create a new Worker project to create and deploy your app. product="workers" params={{ category: "hello-world", - type: "Hello World Worker Using Durable Objects", + type: "Worker + Durable Objects", lang: "TypeScript", }} /> diff --git a/src/content/docs/hyperdrive/get-started.mdx b/src/content/docs/hyperdrive/get-started.mdx index 029ad79a26a74e2..3e22c93f6d320fd 100644 --- a/src/content/docs/hyperdrive/get-started.mdx +++ b/src/content/docs/hyperdrive/get-started.mdx @@ -64,7 +64,7 @@ Create a new project named `hyperdrive-tutorial` by running: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/hyperdrive/tutorials/serverless-timeseries-api-with-timescale/index.mdx b/src/content/docs/hyperdrive/tutorials/serverless-timeseries-api-with-timescale/index.mdx index 0d2c4e90f6dcccb..dfbb5b7b1e0dfba 100644 --- a/src/content/docs/hyperdrive/tutorials/serverless-timeseries-api-with-timescale/index.mdx +++ b/src/content/docs/hyperdrive/tutorials/serverless-timeseries-api-with-timescale/index.mdx @@ -41,7 +41,7 @@ Run the following command to create a Worker project from the command line: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/kv/examples/workers-kv-to-serve-assets.mdx b/src/content/docs/kv/examples/workers-kv-to-serve-assets.mdx index c1d322b340a085e..4d65807da018faa 100644 --- a/src/content/docs/kv/examples/workers-kv-to-serve-assets.mdx +++ b/src/content/docs/kv/examples/workers-kv-to-serve-assets.mdx @@ -33,7 +33,7 @@ To get started, create a Worker application using the [`create-cloudflare` CLI]( product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/kv/get-started.mdx b/src/content/docs/kv/get-started.mdx index d81f019fcff44fc..cb74ecab2e7e046 100644 --- a/src/content/docs/kv/get-started.mdx +++ b/src/content/docs/kv/get-started.mdx @@ -43,7 +43,7 @@ Create a new Worker to read and write to your KV namespace. product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/learning-paths/workers/get-started/first-worker.mdx b/src/content/docs/learning-paths/workers/get-started/first-worker.mdx index b7ce7227218c56d..21abbacc9f5ee29 100644 --- a/src/content/docs/learning-paths/workers/get-started/first-worker.mdx +++ b/src/content/docs/learning-paths/workers/get-started/first-worker.mdx @@ -38,7 +38,7 @@ This will prompt you to install the [`create-cloudflare`](https://www.npmjs.com/ product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/pages/get-started/c3.mdx b/src/content/docs/pages/get-started/c3.mdx index 3ea45948dbf00bb..1248584c6417d14 100644 --- a/src/content/docs/pages/get-started/c3.mdx +++ b/src/content/docs/pages/get-started/c3.mdx @@ -105,7 +105,7 @@ pnpm create cloudflare@latest [--] [] [OPTIONS] [-- ] - The possible values for this option are: - - `hello-world`: Hello World example + - `hello-world`: Hello World Starter - `web-framework`: Framework Starter - `demo`: Application Starter - `remote-template`: Template from a GitHub repo diff --git a/src/content/docs/queues/get-started.mdx b/src/content/docs/queues/get-started.mdx index d2eee78b5356770..3d0ef4d6e43247f 100644 --- a/src/content/docs/queues/get-started.mdx +++ b/src/content/docs/queues/get-started.mdx @@ -35,7 +35,7 @@ To create a producer Worker, run: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> @@ -188,8 +188,6 @@ Each queue can only have one consumer Worker connected to it. If you try to conn To connect your queue to your consumer Worker, open your Wrangler file and add this to the bottom: - - ```toml diff --git a/src/content/docs/queues/tutorials/handle-rate-limits/index.mdx b/src/content/docs/queues/tutorials/handle-rate-limits/index.mdx index 1da4aca566af135..c3a3be035377f50 100644 --- a/src/content/docs/queues/tutorials/handle-rate-limits/index.mdx +++ b/src/content/docs/queues/tutorials/handle-rate-limits/index.mdx @@ -48,7 +48,7 @@ To get started, create a Worker application using the [`create-cloudflare` CLI]( product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> @@ -96,8 +96,6 @@ It is important to include the `max_batch_size` of two to the consumer queue is Your final Wrangler file should look similar to the example below. - - ```toml title="wrangler.toml" diff --git a/src/content/docs/queues/tutorials/web-crawler-with-browser-rendering/index.mdx b/src/content/docs/queues/tutorials/web-crawler-with-browser-rendering/index.mdx index ce996850ac6da96..9e8711dead77013 100644 --- a/src/content/docs/queues/tutorials/web-crawler-with-browser-rendering/index.mdx +++ b/src/content/docs/queues/tutorials/web-crawler-with-browser-rendering/index.mdx @@ -45,7 +45,7 @@ To get started, create a Worker application using the [`create-cloudflare` CLI]( product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> @@ -109,8 +109,6 @@ npm install robots-parser Then, add a Browser Rendering binding. Adding a Browser Rendering binding gives the Worker access to a headless Chromium instance you will control with Puppeteer. - - ```toml @@ -136,8 +134,6 @@ Created queue queues-web-crawler. Then, in your Wrangler file, add the following: - - ```toml @@ -156,8 +152,6 @@ Adding the `max_batch_timeout` of 60 seconds to the consumer queue is important Your final Wrangler file should look similar to the one below. - - ```toml diff --git a/src/content/docs/r2/api/workers/workers-api-usage.mdx b/src/content/docs/r2/api/workers/workers-api-usage.mdx index 2c40d0b32a88f7c..f6f78e0d143d426 100644 --- a/src/content/docs/r2/api/workers/workers-api-usage.mdx +++ b/src/content/docs/r2/api/workers/workers-api-usage.mdx @@ -23,7 +23,7 @@ To get started, open a terminal window and run: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/r2/tutorials/summarize-pdf.mdx b/src/content/docs/r2/tutorials/summarize-pdf.mdx index 97de77e1b8bbbbc..5a5e74be97c0aba 100644 --- a/src/content/docs/r2/tutorials/summarize-pdf.mdx +++ b/src/content/docs/r2/tutorials/summarize-pdf.mdx @@ -47,7 +47,7 @@ Create a new Worker project by running the following commands: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/r2/tutorials/upload-logs-event-notifications.mdx b/src/content/docs/r2/tutorials/upload-logs-event-notifications.mdx index 31d5c1bf5f2873c..7a1f5065740f0c5 100644 --- a/src/content/docs/r2/tutorials/upload-logs-event-notifications.mdx +++ b/src/content/docs/r2/tutorials/upload-logs-event-notifications.mdx @@ -71,7 +71,7 @@ Create a new Worker with C3 (`create-cloudflare` CLI). [C3](/pages/get-started/c product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/radar/investigate/bgp-anomalies.mdx b/src/content/docs/radar/investigate/bgp-anomalies.mdx index 1b66b1ecb18488b..ddeb0ba12f13963 100644 --- a/src/content/docs/radar/investigate/bgp-anomalies.mdx +++ b/src/content/docs/radar/investigate/bgp-anomalies.mdx @@ -187,7 +187,7 @@ First, create a new Workers app in a local directory: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> @@ -216,8 +216,6 @@ crons = [ "*/5 * * * *" ] In this example, we will also need to use Cloudflare KV to save the latest checked event IDs which allows us to know what events are new. Once you have created a KV, you can head back to the `wranglers.toml` file and add the following sections: - - ```toml @@ -372,8 +370,6 @@ If you have [Email Routing][email-routing] enabled for your domain, you can also For this alert to work, you will need to configure the proper email bindings in the [Wrangler configuration file][wrangler-send-email]. - - ```toml diff --git a/src/content/docs/vectorize/get-started/embeddings.mdx b/src/content/docs/vectorize/get-started/embeddings.mdx index 7e61b2162b4914e..daf846a37a36432 100644 --- a/src/content/docs/vectorize/get-started/embeddings.mdx +++ b/src/content/docs/vectorize/get-started/embeddings.mdx @@ -49,7 +49,7 @@ Open your terminal and create a new project named `embeddings-tutorial` by runni product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> @@ -133,8 +133,6 @@ Before you deploy your embedding example, ensure your Worker uses your model cat From within the `embeddings-tutorial` directory, open your Wrangler file in your editor and add the new `[[ai]]` binding to make Workers AI's models available in your Worker: - - ```toml diff --git a/src/content/docs/vectorize/get-started/intro.mdx b/src/content/docs/vectorize/get-started/intro.mdx index 6b2e9a53a78b743..5997c935dcb46cd 100644 --- a/src/content/docs/vectorize/get-started/intro.mdx +++ b/src/content/docs/vectorize/get-started/intro.mdx @@ -54,7 +54,7 @@ Create a new project named `vectorize-tutorial` by running: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/workers-ai/get-started/workers-wrangler.mdx b/src/content/docs/workers-ai/get-started/workers-wrangler.mdx index d12b191a22ec613..ab0281f4ec2bd07 100644 --- a/src/content/docs/workers-ai/get-started/workers-wrangler.mdx +++ b/src/content/docs/workers-ai/get-started/workers-wrangler.mdx @@ -30,7 +30,7 @@ Running `npm create cloudflare@latest` will prompt you to install the [`create-c product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/workers-ai/tutorials/build-a-retrieval-augmented-generation-ai.mdx b/src/content/docs/workers-ai/tutorials/build-a-retrieval-augmented-generation-ai.mdx index 07024cb565a5a5d..73ef4f54c545800 100644 --- a/src/content/docs/workers-ai/tutorials/build-a-retrieval-augmented-generation-ai.mdx +++ b/src/content/docs/workers-ai/tutorials/build-a-retrieval-augmented-generation-ai.mdx @@ -43,7 +43,7 @@ Open a terminal window and run C3 to create your Worker project: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> @@ -145,8 +145,6 @@ npx wrangler vectorize create vector-index --dimensions=768 --metric=cosine Then, add the configuration details for your new Vectorize index to the [Wrangler configuration file](/workers/wrangler/configuration/): - - ```toml diff --git a/src/content/docs/workers-ai/tutorials/llama-vision-tutorial.mdx b/src/content/docs/workers-ai/tutorials/llama-vision-tutorial.mdx index 8980796f263d1bd..820dcee1bb71836 100644 --- a/src/content/docs/workers-ai/tutorials/llama-vision-tutorial.mdx +++ b/src/content/docs/workers-ai/tutorials/llama-vision-tutorial.mdx @@ -49,7 +49,7 @@ Replace `$CLOUDFLARE_ACCOUNT_ID` and `$CLOUDFLARE_AUTH_TOKEN` with your actual a product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/workers/get-started/guide.mdx b/src/content/docs/workers/get-started/guide.mdx index fce8efe6d0daa7c..901f51809be0788 100644 --- a/src/content/docs/workers/get-started/guide.mdx +++ b/src/content/docs/workers/get-started/guide.mdx @@ -33,7 +33,7 @@ Open a terminal window and run C3 to create your Worker project. [C3 (`create-cl product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/workers/static-assets/get-started.mdx b/src/content/docs/workers/static-assets/get-started.mdx index 6e70966b06a6918..0702dd765a06eaf 100644 --- a/src/content/docs/workers/static-assets/get-started.mdx +++ b/src/content/docs/workers/static-assets/get-started.mdx @@ -38,7 +38,7 @@ This guide will instruct you through setting up and deploying a static site on W @@ -96,7 +96,7 @@ Open a terminal window and run C3 to create your Worker project: diff --git a/src/content/docs/workers/tutorials/automated-analytics-reporting/index.mdx b/src/content/docs/workers/tutorials/automated-analytics-reporting/index.mdx index e97205286eeebd8..c8b058d3c8f0fce 100644 --- a/src/content/docs/workers/tutorials/automated-analytics-reporting/index.mdx +++ b/src/content/docs/workers/tutorials/automated-analytics-reporting/index.mdx @@ -58,7 +58,7 @@ In this tutorial, name your Worker as `account-analytics`. product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/workers/tutorials/build-a-jamstack-app/index.mdx b/src/content/docs/workers/tutorials/build-a-jamstack-app/index.mdx index 6b6072a3935ef47..ee4e95c340a8555 100644 --- a/src/content/docs/workers/tutorials/build-a-jamstack-app/index.mdx +++ b/src/content/docs/workers/tutorials/build-a-jamstack-app/index.mdx @@ -35,7 +35,7 @@ First, use the [`create-cloudflare`](https://www.npmjs.com/package/create-cloudf product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/workers/tutorials/build-a-qr-code-generator/index.mdx b/src/content/docs/workers/tutorials/build-a-qr-code-generator/index.mdx index 1405d06e37640b5..952a66f71028f10 100644 --- a/src/content/docs/workers/tutorials/build-a-qr-code-generator/index.mdx +++ b/src/content/docs/workers/tutorials/build-a-qr-code-generator/index.mdx @@ -30,7 +30,7 @@ First, use the [`create-cloudflare` CLI](/pages/get-started/c3) to create a new product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/workers/tutorials/connect-to-turso-using-workers/index.mdx b/src/content/docs/workers/tutorials/connect-to-turso-using-workers/index.mdx index 5822fd477924f13..8e6de4c1b8342c0 100644 --- a/src/content/docs/workers/tutorials/connect-to-turso-using-workers/index.mdx +++ b/src/content/docs/workers/tutorials/connect-to-turso-using-workers/index.mdx @@ -116,7 +116,7 @@ To create a new Workers project (named `worker-turso-ts`), run the following: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/workers/tutorials/create-finetuned-chatgpt-ai-models-with-r2/index.mdx b/src/content/docs/workers/tutorials/create-finetuned-chatgpt-ai-models-with-r2/index.mdx index 89bd08f4c16dc33..2217a060a72e32f 100644 --- a/src/content/docs/workers/tutorials/create-finetuned-chatgpt-ai-models-with-r2/index.mdx +++ b/src/content/docs/workers/tutorials/create-finetuned-chatgpt-ai-models-with-r2/index.mdx @@ -53,7 +53,7 @@ First, use the `c3` CLI to create a new Cloudflare Workers project. product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/workers/tutorials/generate-youtube-thumbnails-with-workers-and-images/index.mdx b/src/content/docs/workers/tutorials/generate-youtube-thumbnails-with-workers-and-images/index.mdx index eec401db4242262..0423e98e43424aa 100644 --- a/src/content/docs/workers/tutorials/generate-youtube-thumbnails-with-workers-and-images/index.mdx +++ b/src/content/docs/workers/tutorials/generate-youtube-thumbnails-with-workers-and-images/index.mdx @@ -368,7 +368,7 @@ Create a Worker to serve the image you uploaded to Images by running: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> @@ -497,8 +497,6 @@ Image transformations can only be tested when you deploy your Worker. To deploy your Worker, open your Wrangler file and update the `name` key with your project's name. Below is an example with this tutorial's project name: - - ```toml diff --git a/src/content/docs/workers/tutorials/github-sms-notifications-using-twilio/index.mdx b/src/content/docs/workers/tutorials/github-sms-notifications-using-twilio/index.mdx index 9f551448e5852cb..4b4f2c84e42b3a1 100644 --- a/src/content/docs/workers/tutorials/github-sms-notifications-using-twilio/index.mdx +++ b/src/content/docs/workers/tutorials/github-sms-notifications-using-twilio/index.mdx @@ -38,7 +38,7 @@ Start by using `npm create cloudflare@latest` to create a Worker project in the product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/workers/tutorials/handle-form-submissions-with-airtable/index.mdx b/src/content/docs/workers/tutorials/handle-form-submissions-with-airtable/index.mdx index f682c72b33c33bb..2c53e35d04370b2 100644 --- a/src/content/docs/workers/tutorials/handle-form-submissions-with-airtable/index.mdx +++ b/src/content/docs/workers/tutorials/handle-form-submissions-with-airtable/index.mdx @@ -92,7 +92,7 @@ Create a new `airtable-form-handler` Worker project: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/workers/tutorials/live-cursors-with-nextjs-rpc-do/index.mdx b/src/content/docs/workers/tutorials/live-cursors-with-nextjs-rpc-do/index.mdx index b98736a810b25b6..851e03389d6e49f 100644 --- a/src/content/docs/workers/tutorials/live-cursors-with-nextjs-rpc-do/index.mdx +++ b/src/content/docs/workers/tutorials/live-cursors-with-nextjs-rpc-do/index.mdx @@ -126,7 +126,7 @@ that will be made available to the Next.js Worker using a [`WorkerEntrypoint`](/ product="workers" params={{ category: "hello-world", - type: "Hello World Worker using Durable Objects", + type: "Worker + Durable Objects", lang: "TypeScript", }} /> diff --git a/src/content/docs/workers/tutorials/openai-function-calls-workers/index.mdx b/src/content/docs/workers/tutorials/openai-function-calls-workers/index.mdx index 1dce488abcf6cf8..d48bbb782fb0416 100644 --- a/src/content/docs/workers/tutorials/openai-function-calls-workers/index.mdx +++ b/src/content/docs/workers/tutorials/openai-function-calls-workers/index.mdx @@ -42,7 +42,7 @@ Create a Worker project in the command line: product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "JavaScript", }} /> diff --git a/src/content/docs/workers/tutorials/postgres/index.mdx b/src/content/docs/workers/tutorials/postgres/index.mdx index 3d453cccf3b7b20..7c171ce5f134d7b 100644 --- a/src/content/docs/workers/tutorials/postgres/index.mdx +++ b/src/content/docs/workers/tutorials/postgres/index.mdx @@ -42,7 +42,7 @@ This will prompt you to install the [`create-cloudflare`](https://www.npmjs.com/ product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/docs/workers/tutorials/upload-assets-with-r2/index.mdx b/src/content/docs/workers/tutorials/upload-assets-with-r2/index.mdx index af02f948ed8301d..fb38056b8c7e858 100644 --- a/src/content/docs/workers/tutorials/upload-assets-with-r2/index.mdx +++ b/src/content/docs/workers/tutorials/upload-assets-with-r2/index.mdx @@ -36,7 +36,7 @@ First, use the [`create-cloudflare` CLI](https://github.com/cloudflare/workers-s product="workers" params={{ category: "hello-world", - type: "Hello World Worker", + type: "Worker only", lang: "TypeScript", }} /> diff --git a/src/content/partials/workers/c3-post-run-steps.mdx b/src/content/partials/workers/c3-post-run-steps.mdx index 877dd4e55086a69..3f23380e6b9126a 100644 --- a/src/content/partials/workers/c3-post-run-steps.mdx +++ b/src/content/partials/workers/c3-post-run-steps.mdx @@ -11,7 +11,7 @@ switch (props.category) { case 'hello-world': return (
    -
  • For What would you like to start with?, choose Hello World example.
  • +
  • For What would you like to start with?, choose Hello World Starter.
  • For Which template would you like to use?, choose {props.type}.
  • For Which language do you want to use?, choose {props.lang}.
  • For Do you want to use git for version control?, choose Yes.