UNPKG

create-better-t-stack

Version:

A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations

11 lines (9 loc) 228 B
import { defineConfig } from "drizzle-kit"; export default defineConfig({ schema: "./src/db/schema", out: "./src/db/migrations", dialect: "postgresql", dbCredentials: { url: process.env.DATABASE_URL || "", }, });