chatbot-template/drizzle.config.ts

16 lines
295 B
TypeScript
Raw Normal View History

2024-11-14 12:16:05 -05:00
import { config } from 'dotenv';
import { defineConfig } from 'drizzle-kit';
2024-10-11 18:00:22 +05:30
config({
2024-11-14 12:16:05 -05:00
path: '.env.local',
2024-10-11 18:00:22 +05:30
});
export default defineConfig({
2024-11-15 10:13:21 -05:00
schema: './lib/db/schema.ts',
out: './lib/db/migrations',
2024-11-14 12:16:05 -05:00
dialect: 'postgresql',
2024-10-11 18:00:22 +05:30
dbCredentials: {
url: process.env.POSTGRES_URL!,
},
});