feat: added drizzle for contact management

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-09-30 21:36:07 -07:00
parent 1a3faf03d5
commit ba62489715
8 changed files with 762 additions and 18 deletions

View file

@ -0,0 +1,11 @@
import 'dotenv/config';
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
out: './drizzle',
schema: './app/db/schema.ts',
dialect: 'postgresql',
dbCredentials: {
url: process.env.DATABASE_URL!,
},
});