Skip to content

Commit

Permalink
redirect and link updates
Browse files Browse the repository at this point in the history
  • Loading branch information
aninibread committed Sep 19, 2024
1 parent d513628 commit 8b063cc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions public/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -1436,6 +1436,7 @@
/workers/observability/local-development-and-testing/ /workers/testing/local-development/ 301
/workers/configuration/deployments/ /workers/configuration/versions-and-deployments/ 301
/workers/configuration/continuous-integration/ /workers/ci-cd/ 301
/workers/wrangler/ci-cd/ /workers/ci-cd/external-cicd/ 301
/workers/tutorials/hello-world-rust/ /workers/tutorials/ 301
/workers/tutorials/introduction-to-cloudflare-workers/ https://www.youtube.com/watch?v=H7Qe96fqg1M 301
/workers/configuration/bindings/about-service-bindings/ /workers/runtime-apis/bindings/service-bindings/ 301
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Build settings can be found on the Settings page of your Worker. The following o
- **Git branch**
- Select the branch you would like Cloudflare to listen to for new commits. This will be defaulted to main.
- **Build command** _(Optional)_
- Add a build command if your project requires a build step. This is necessary, for example, when building with assets. Reference supported [frameworks](/workers/frameworks/) for correct build command.
- Add a build command if your project requires a build step. This is necessary, for example, when building with assets.
- **Deploy command**
- The deploy command lets you choose the specific Wrangler command you would like to use to deploy your Worker. Your deploy command is defaulted to `npx wrangler deploy`, but it can be customized as needed. You can also upload as a version and take advantage of [gradual deployments](/workers/configuration/versions-and-deployments/gradual-deployments/).
- **Root Directory** _(Optional)_
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/workers/ci-cd/builds/build-image.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Build Image
description: Understand the build image used in Workers Builds.
---

Workers Builds' build environment has broad support for a variety of languages, such as Ruby, Node.js, Python, PHP, and Go.
The build environment has broad support for a variety of languages, such as Ruby, Node.js, Python, PHP, and Go.

If you need to use a [specific version](/workers/ci-cd/builds/build-image/#overriding-default-versions) of a language, (for example, Node.js or Ruby) you can specify it by providing an associated environment variable in your build configuration, or setting the relevant file in your source code.

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/workers/wrangler/commands.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1714,7 +1714,7 @@ wrangler queues consumer remove <queue-name> <script-name>

Authorize Wrangler with your Cloudflare account using OAuth. Wrangler will attempt to automatically open your web browser to login with your Cloudflare account.

If you prefer to use API tokens for authentication, such as in headless or continuous integration environments, refer to [Running Wrangler in CI/CD](workers/ci-cd/index/).
If you prefer to use API tokens for authentication, such as in headless or continuous integration environments, refer to [Running Wrangler in CI/CD](/workers/ci-cd/).

```txt
wrangler login [OPTIONS]
Expand Down

0 comments on commit 8b063cc

Please sign in to comment.