- Add transactions_dirty table and zero-tolerance cleansing action - Implement bookkeeping workbench (/bookkeeping) with searchable Combobox channel selector and card suffix / account identifier - Implement transaction ledger (/transactions) with date groupings, multi-currency metrics, and filters - Update AGENTS.md guidelines for Base UI Select and Combobox bindings
16 lines
319 B
TypeScript
16 lines
319 B
TypeScript
import { defineConfig } from "drizzle-kit"
|
|
import * as dotenv from "dotenv"
|
|
|
|
dotenv.config({ path: ".env.local" })
|
|
|
|
export default defineConfig({
|
|
schema: "./lib/db/schema.ts",
|
|
out: "./drizzle",
|
|
dialect: "postgresql",
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL!,
|
|
},
|
|
strict: true,
|
|
verbose: true,
|
|
})
|