UNPKG

@proofkit/cli

Version:

Create web application with the ProofKit stack

13 lines (10 loc) 253 B
import { type Config } from "drizzle-kit"; import { env } from "~/env"; export default { schema: "./src/server/db/schema.ts", dialect: "mysql", dbCredentials: { url: env.DATABASE_URL, }, tablesFilter: ["project1_*"], } satisfies Config;