From 0c25c12c6313d897232fde466e7958c5ec5fd259 Mon Sep 17 00:00:00 2001 From: Kate Tungusova Date: Mon, 15 May 2023 18:42:13 +0100 Subject: [PATCH 1/5] [Workers] Dashboard instructions revision --- content/workers/examples/images-workers.md | 6 ++-- content/workers/learning/logging-workers.md | 4 +-- .../workers/learning/metrics-and-analytics.md | 2 +- .../learning/migrating-to-module-workers.md | 2 +- content/workers/learning/playground.md | 6 +++- .../workers/learning/using-durable-objects.md | 4 +-- .../workers/learning/using-services/index.md | 2 +- content/workers/platform/bindings/_index.md | 2 +- .../bindings/about-service-bindings.md | 13 ++++++--- content/workers/platform/deployments.md | 10 +++++-- .../workers/platform/environment-variables.md | 29 ++++++++++--------- content/workers/platform/environments.md | 8 ++++- content/workers/platform/limits.md | 6 +++- content/workers/platform/logpush.md | 2 +- .../workers/platform/nodejs-compatibility.md | 2 +- content/workers/platform/pricing.md | 2 +- .../platform/triggers/cron-triggers/index.md | 7 ++++- .../platform/triggers/custom-domains.md | 4 +-- content/workers/platform/triggers/routes.md | 4 +-- .../workers/runtime-apis/durable-objects.md | 2 +- content/workers/runtime-apis/kv.md | 13 +++++---- content/workers/runtime-apis/nodejs/_index.md | 4 +-- .../deploy-a-realtime-chat-app/index.md | 6 ++-- .../tutorials/store-data-with-fauna/index.md | 2 +- 24 files changed, 88 insertions(+), 54 deletions(-) diff --git a/content/workers/examples/images-workers.md b/content/workers/examples/images-workers.md index 4b710388e52..344d78c5e1f 100644 --- a/content/workers/examples/images-workers.md +++ b/content/workers/examples/images-workers.md @@ -13,9 +13,9 @@ layout: example To serve images from a custom domain: 1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com). -2. Select you account > select **Workers**. -3. Select **Create a service**. -4. In your Workers, select **Quick edit** and paste the following code. +2. Select you account > select **Workers & Pages**. +3. Select **Create** > **Worker** and create your Worker. +4. In your Worker, select **Quick edit** and paste the following code. {{}} {{}} diff --git a/content/workers/learning/logging-workers.md b/content/workers/learning/logging-workers.md index e2fbdd79d9d..af0f1f8dd82 100644 --- a/content/workers/learning/logging-workers.md +++ b/content/workers/learning/logging-workers.md @@ -8,7 +8,7 @@ weight: 4 You can access logs and exceptions for your Workers using the dashboard or [`wrangler tail`](/workers/wrangler/commands/#tail). -The Workers platform captures all `console.log`'s and uncaught exceptions, in addition to information about the event itself. All of this can be viewed with either `wrangler tail` or on the dashboard through your **Account Home** > **Workers** > your **Workers script** > **Logs**. +The Workers platform captures all `console.log`'s and uncaught exceptions, in addition to information about the event itself. All of this can be viewed with either `wrangler tail` or on the dashboard through your **Account Home** > **Workers & Pages** > your Workers > **Logs**. {{