workers-help
pages-help
general-help
durable-objects
workers-and-pages-discussions
pages-discussions
wrangler
coding-help
kv
🦀rust-on-workers
miniflare
stream
general-discussions
functions
zaraz
⚡instant-logs
email-routing
r2
pubsub-beta
analytics-engine
d1-database
queues
workers-for-platforms
workerd-runtime
web3
🤖turnstile
radar
web-research
logs-engine
cloudflare-go
terraform-provider-cloudflare
workers-ai
browser-rendering-api
logs-and-analytics
next-on-pages
cloudflare-ai
build-caching-beta
hyperdrive
vectorize
ai-gateway
python-workers-beta
vitest-integration-beta
workers-observability
workflows
vite-plugin
pipelines-beta
containers-beta
Workers GitHub deploy clears runtime variables
keep_vars = true
in my wrangler.toml (this used to work fine before), but recently deployments started clearing the vars again.
...How to run scheduled builds?
Worker branch preview - DurableObject limit
How to implement auth with Nextjs on Vercel + D1 as db?
need help with these

Env variable confusion
Remote bindings not using preview D1 DB
bun dev
wrangler.jsonc
...How to have worker auto deploy specific environment?
Error Code 1003 (HTTP status 403) with HTTP Service Bindings API calls including db connection
NeonDbError: Server error (HTTP status 403): error code: 1003
errors.
- Error message shows "NeonDbError" but we suspect this is actually Cloudflare's error code 1003, not a Neon-originated error
- Neon Support confirmed: Database was operating normally during error timestamps, no 403 errors logged at database layer- Error code 1003 is documented by Cloudflare as "Direct IP Access Not Allowed" https://developers.cloudflare.com/support/troubleshooting/http-status-codes/cloudflare-1xxx-errors/error-1003/...
Is `version_metadata` an inheritable key?
Clarification on global env and isolate re-use
"When you deploy a change to your Worker, and only change its bindings (i.e. you don't change the Worker's code), Cloudflare may reuse existing isolates that are already running your Worker... As a result, you must be careful when "polluting" global scope with derivatives of your bindings."In other words, I'm looking to confirm that since Jan 15, you can now use
import { env } from "cloudflare:workers";
and know that if the env vars change you'll get those changes?...Cache-Control simple question
Cache-Control
header like this:
```
return c.json(response.results, 200, {...How will smart placement react ?
Update Environment vars using the API while still using wrangler for dev & deploy
How to debug Agent's DO?
Banned from site
How to debug Worker Error 1101?
Attach VSCode Debugger while running more than one worker with wrangler dev
yarn wrangler dev -c ./app/wrangler.jsonc -c ./api/wrangler.jsonc
(docs: https://developers.cloudflare.com/workers/development-testing/multi-workers/#single-dev-command)
However, when doing this I cannot deterministically attach the debugger to any specific service. It seems wrangler decides which service loads first (presumably based on the dependency tree between them as specified in the wrangler.jsonc services bindings?) and then only the first worker binds the inspector to port 9229. I've tried rearranging the order of wrangler parameters to influence this to no avail. I also tried adding inspector_port
in the wrangler.jsonc but it seems that option is not supported?
Is there any way to run multiple workers via wrangler dev
and attach a debugger to either all of them, or choose which worker gets the 9229 debugger port, or assign unique debugger ports to each worker being run?...Next.js requiring env variables in build variables