11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
import type { Config } from 'drizzle-kit'
|
|
|
|
export default {
|
|
schema: './server/db/schema.ts',
|
|
out: './server/db/migrations',
|
|
driver: 'pg',
|
|
dbCredentials: {
|
|
connectionString: process.env.DATABASE_URL || 'postgresql://user:password@localhost:5432/lastwebnovel'
|
|
}
|
|
} satisfies Config
|