TypeScript 97.4%
SQL 1%
JavaScript 0.9%
CSS 0.6%
1import { defineConfig } from "drizzle-kit";23export default defineConfig({4 dialect: "postgresql",5 schema: ["./src/db/schema.ts", "./src/db/schema-*.ts"],6 out: "./drizzle",7 dbCredentials: { url: process.env.DATABASE_URL ?? "postgres://localhost:5432/polyllm" },8 strict: true,9 verbose: false,10});11