mirror of https://github.com/TZGyn/shortener
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
298 B
TypeScript
16 lines
298 B
TypeScript
// drizzle.config.ts
|
|
import type { Config } from 'drizzle-kit'
|
|
|
|
export default {
|
|
schema: './src/lib/db/schema.ts',
|
|
out: './drizzle',
|
|
driver: 'pg',
|
|
dbCredentials: {
|
|
user: 'postgres',
|
|
password: 'password',
|
|
host: '0.0.0.0',
|
|
port: 5432,
|
|
database: 'link-shortener',
|
|
},
|
|
} satisfies Config
|