5 questions
0
votes
1
answer
47
views
npm drizzle-kit and AWS RDS: Error: getaddrinfo EAI_AGAIN
I don't seem to be able to push my configuration to RDS
// package.json
"drizzle-kit": "^0.31.5",
// drizzle.config.ts
import { defineConfig, Config } from 'drizzle-kit';
const ...
0
votes
2
answers
253
views
Setting Up Drizzle + Postgres in React Native Stuck with Installing Drizzle-ORM?
I thought most if not all of Drizzle's Postgres setup for React Native would be pretty much React Native agnostic in the end, so I followed their "Get Started" tutorial to get to this point.
...
0
votes
1
answer
449
views
drizzle-kit generate `SyntaxError: Unexpected token in JSON at position 0` on mac
I am using drizzle ORM to manage database migrations.
After making changes to my Schema.ts file, I ran
drizzle-kit generate --config=drizzle.config.ts --name MigrationName
This produced an error:
john@...
1
vote
1
answer
224
views
How to run drizzle-kit in Deno 2
I am trying to use the migration command
npx drizzle-kit generate --name=init
in the terminal with Deno.
However, when I try to use it I get an error:
Cannot find module 'drizzle-kit'
Require stack:
- ...
3
votes
3
answers
1k
views
drizzle-kit not using .env.test or .env.development in bun.js
I'm working with bun.js and I'm trying to do bun run drizzle-kit push, bun run drizzle-kit generate, bun run drizzle-kit migrate but no any of these commands works for testing environment, the drizzle ...