11 lines
236 B
TypeScript
Executable file
11 lines
236 B
TypeScript
Executable file
import 'dotenv/config';
|
|
import { defineConfig } from 'drizzle-kit';
|
|
|
|
export default defineConfig({
|
|
out: './drizzle',
|
|
schema: './lib/schema.ts',
|
|
dialect: 'postgresql',
|
|
dbCredentials: {
|
|
url: process.env.databaseUrl!,
|
|
},
|
|
});
|