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.

16 lines
315 B
TypeScript

// drizzle.config.ts
import type { Config } from 'drizzle-kit'
export default {
schema: './src/lib/db/schema.ts',
out: './drizzle',
dialect: 'postgresql',
dbCredentials: {
user: 'postgres',
password: 'password',
host: '192.168.100.110',
port: 5432,
database: 'link-shortener',
},
} satisfies Config