import type { Config } from "drizzle-kit"; export default { schema: "./lib/db/schema.ts", out: "./drizzle", dialect: "postgresql", dbCredentials: { url: process.env.DATABASE_URL ?? "postgres://langlearn:langlearn@localhost:5432/langlearn", }, } satisfies Config;