mirror of
https://github.com/dfpc-coe/CloudTAK.git
synced 2025-12-22 05:37:16 +00:00
13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
|
|
export default {
|
|
dialect: 'postgresql',
|
|
schema: './lib/schema.ts',
|
|
dbCredentials: {
|
|
url: process.env.POSTGRES || 'postgres://postgres@localhost:5432/tak_ps_etl',
|
|
},
|
|
verbose: true,
|
|
strict: true,
|
|
out: './migrations'
|
|
} satisfies Config;
|