You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
266 B
TypeScript

import type { Config } from 'drizzle-kit'
export default {
schema: './schema.ts',
out: './drizzle',
driver: 'pg',
dbCredentials: {
user: 'postgres',
password: 'password',
host: '0.0.0.0',
port: 5432,
database: 'next-dashboard',
},
} satisfies Config