How do I seed my Cloudflare D1 db?
I have created a simple schema
and I have been successful in migrating both the local and prod dbs
I have also setup drizzle-seed (correctly I think)
How would I run the seed script against Cloudflare D1?
How would I run it against the local instance? (Its just a sqlite file inside
.wrangler
)
Is there a way to generate a SQL file from the seed script instead? I know I can run it against both local and prod with wrangler :: https://developers.cloudflare.com/d1/wrangler-commands/#d1-executeCloudflare Docs
Wrangler commands · Cloudflare D1 docs
D1 Wrangler commands use REST APIs to interact with the control plane. This page lists the Wrangler commands for D1.
5 Replies
I did try to look around for an answer but I didn't find anything. So I also opened this issue so that the solution can be added to the docs 🙂
https://github.com/drizzle-team/drizzle-orm/issues/4285
GitHub
[DOCS]: How do I seed my Cloudflare D1 db with
drizzle-seed
? · Is...Enhancement hasn't been filed before. I have verified this enhancement I'm about to request hasn't been suggested before. Describe the enhancement you want to request I have created a s...
lmk if there's any more context I can provide 🙂
If you want a workaround, you can connect to remote d1 in a node script using d1 http api requests, just like they did in the drizzle-kit source using
drizzle-orm/sqlite-proxy
You can do the same for your local d1 .sqlite file with drizzle-orm/better-sqlite3
and a Database instance from better-sqlite3
Or, you can run your worker and add a seed endpoint, request it after running wrangler dev
for local d1 or wrangler dev --remote
for remote d1, then just delete it, or keep it and add some logic to make sure it only seeds when you want it to.i wrote a proof of concept script you can use for both remote (when you specify --remote via args) and local. You can base your seed script on this: https://gist.github.com/mastondzn/76f42e77bf469a87b5dae76f7292ff2c
i ended up using libsql client instead of better-sqlite3 but you can do whatever you want
@reaper
thanks for this! I cross posted the info on github as well. I think I'll try the script for local testing and avoid seeding the prod db for now