import type { Config } from "drizzle-kit"; const cfg: Config = { schema: "./src/db.ts", out: "../../db/migrations", dialect: "postgresql", dbCredentials: { url: process.env.DATABASE_URL ?? "postgres://stargue:stargue_dev@localhost:5433/stargue_publishing_engine", }, verbose: true, strict: true, }; export default cfg;