Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/leaysgur/sveltekit-d1-drizzle-template

Template for SvelteKit on Cloudflare Pages using Cloudflare D1 via DrizzleORM
https://github.com/leaysgur/sveltekit-d1-drizzle-template

Last synced: 24 days ago
JSON representation

Template for SvelteKit on Cloudflare Pages using Cloudflare D1 via DrizzleORM

Awesome Lists containing this project

README

        

# sveltekit-drizzle-d1-template

```sh
npm run migrate
wrangler d1 migrations apply myapp --local

wrangler dev ./node_modules/cfw-bindings-wrangler-bridge/worker/index.js
npm run dev

npx tsx ./scripts/add-todos.ts
npx tsx ./scripts/delete-todos.ts

npx cfw-storage-bindings-studio
```

## Drizzle + D1 issues

- `WITHOUT ROWID` is not supported
- https://github.com/drizzle-team/drizzle-orm/issues/408
- `CHECK` is not supported
- https://github.com/drizzle-team/drizzle-orm/issues/880
- `sql` helper is needed to avoid D1 bug when select the same column name from joined 2 tables
- https://github.com/drizzle-team/drizzle-orm/issues/555