mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
542 B
Plaintext
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`
|