Files
cheatsheet-tldr/tldr/wrangler
2025-06-30 00:22:10 +00:00

30 lines
542 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# wrangler
> Cloudflare Workers tool.
> More information: <https://developers.cloudflare.com/workers/wrangler/commands/>.
- Initialize a project with a skeleton configuration:
`wrangler init {{project_name}}`
- Authenticate with Cloudflare:
`wrangler login`
- Start a local development server:
`wrangler dev --host {{hostname}}`
- Publish the worker script:
`wrangler publish`
- Aggregate logs from the production worker:
`wrangler tail`