veeque
Explore posts from serversDTDrizzle Team
•Created by veeque on 5/11/2025 in #help
Migrate only up to a certain migration
Due to the system I'm running I need to run a migration up to a certain point, then run some logic, and only then keep with the normal migrations. This is because the logic I need to mutates data in a certain way. Is there a way to tell this to
migrate()
?8 replies
CDCloudflare Developers
•Created by veeque on 5/6/2025 in #workers-help
How to redefine types generated by `wrangler types`
Running
wrangler dev
generates
but I want ARGON2
to be something else. I would like to add a app.d.ts
file in my src/
folder such that I define it to be a worker with RPC methods (it doesn't automatically because it's a rust-based worker).3 replies
CDCloudflare Developers
•Created by veeque on 4/23/2025 in #workers-help
How to define RPC methods on a separate file
I have an RPC method that is very long and thus don't want to define in the same place as other functions. I though about doing
myFunction = myFunction
but it complains that The RPC receiver does not implement the method "myFunction"
. Since myFunction
uses this
it's defined as:
I even tried "proxying" it
but now it complains that it expected 1 arg, but got two2 replies
DTDrizzle Team
•Created by veeque on 4/19/2025 in #help
How to handle multiple Durable Objects (with different schemas and migrations)
Is there a way to kind of have two Drizzle "projects" in one? I want to have two sets of schemas, and two of everything such that I can all one set of migrations on one Durable Object, and another on another Durable Object.
This is because one worker allows for multiple Durable Objects to be defined and used
1 replies
CDCloudflare Developers
•Created by veeque on 4/16/2025 in #workers-help
ETA for being able to set watch paths in `wrangler.jsonc`?
To configure watch paths for Workers Builds (https://developers.cloudflare.com/workers/ci-cd/builds/build-watch-paths/) I have to use the dashboard. The config for it (https://developers.cloudflare.com/workers/wrangler/custom-builds/) is currently not honored (https://developers.cloudflare.com/workers/ci-cd/builds/configuration/).
Is there an ETA for when that config option is going to be honored?
1 replies
CDCloudflare Developers
•Created by veeque on 4/15/2025 in #workers-help
`wrangler types` uses generic type for `DurableObjectNamespace`
I have a Worker with the default being the extended
WorkerEntrypoint
and a DurableObject
DO. runnign wrangler types
gives:
So clearly it knows even the name of the DO, just refuses to put it as DurableObjectNamespace<MyDurableObject>
10 replies
CDCloudflare Developers
•Created by veeque on 4/15/2025 in #workers-help
Know commit hash of running worker
When the worker is deployed I would like to have a way for the worker to know what is the commit version that was used to build/ship it. Kind of like having an env var that stores the output of
git rev-parse HEAD
that i can just reference in the worker's code itself.4 replies
CDCloudflare Developers
•Created by veeque on 4/14/2025 in #pages-help
How do I reinstall the git integration?

2 replies
CDCloudflare Developers
•Created by veeque on 3/31/2025 in #workers-help
Environments best practices
With workers I can have a "default" environment (placing things in the root of the
wrangler.jsonc
, and n environments such as development
. What's better: having the "default" be the production one with the development one being specified as a separate env (requiring me to add -e development
when using that), or having the "default" one be the development, with the prod being its own env?3 replies
CDCloudflare Developers
•Created by veeque on 3/28/2025 in #workers-help
Preview deployments non a thing with Assets?
With Pages I could just push to another branch and that got its own
.pages.dev
URL. Doing the same with Workers Assets doesn't give me such URL, so... how can I get a preview deployment?—say that of the dev
branch8 replies
CDCloudflare Developers
•Created by veeque on 3/27/2025 in #workers-help
Build rust workers
Using the git integration it complains that cargo is not found. Is this a limitation of the git integration?
3 replies
CDCloudflare Developers
•Created by veeque on 3/26/2025 in #workers-help
Cannot deploy Worker Assets

18 replies
CDCloudflare Developers
•Created by veeque on 3/25/2025 in #pages-help
In SvelteKit do I have to use `wrangler dev` instead of `vite dev` to make service bindings work?
I have two SvelteKit projects, both running on Pages. Project B has a service binding to Project A but it only works if Project A is running the
preview
script (which contains wrangler dev
), and not when using the dev
script (vite dev
). Is this a "hard" limit or is there a way to make service bindings work with the "normal" dev mode?4 replies
CDCloudflare Developers
•Created by veeque on 3/20/2025 in #pages-help
Image transform with SvelteKit
So, I put the images in the
assets
folder, but how do I use cloudflare's image transformation now?
Say i have pic.jpg
in assets/pic.jpg
, visible on https://my-page.pages.dev/pic.jpg
. doing https://my-page.pages.dev/cdn-cgi/image/width=80,quality=75/pic.jpg
doesn't return anything... how is this supposed to work?1 replies
CDCloudflare Developers
•Created by veeque on 3/20/2025 in #pages-help
Is there a build time limit?
i got this after 3 mins (builds locally)
14 replies
CDCloudflare Developers
•Created by veeque on 2/3/2025 in #general-help
How do image transformations work? (SvelteKit + unpic)
I have a SvelteKit app, and place the images inside the
assets
folder. Then, using unpic, it should (but doesn't) fetch from some cf-specific url to transform the images. This doesn't happen and I have no idea how to actually make it work.1 replies
CDCloudflare Developers
•Created by veeque on 1/29/2025 in #pages-help
What's the difference between Cloudflare Pages and Workers Frameworks?
Basically, when making an app, which should I choose and why? The line between them is really blurry.
14 replies
DTDrizzle Team
•Created by veeque on 1/21/2025 in #help
What is the recommended way to have a staging and a production environment?
For the record, I'm using Cloudflare D1. I know how to set up the
wrangler.json
file such that based on the environment I use a different database (same binding, just different database IDs). How can I make it so the drizzle.config.ts
file uses a different .env
file based on the environment being used?4 replies