import { defineConfig } from 'drizzle-kit'; // Spike configuration (#216). Credentials come from the environment rather than // this file — the same rule the rest of the repo follows, and this one points at // a developer's local database, not a deployed one. // // DRIZZLE_DATABASE_URL=postgres://redefined_local:redefined_local@localhost:55500/redefined_local export default defineConfig({ dialect: 'postgresql', schema: './src/db-drizzle/schema.ts', out: './drizzle', dbCredentials: { url: process.env.DRIZZLE_DATABASE_URL ?? '' } });