this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 248 B view raw
1import { defineConfig } from "drizzle-kit"; 2import { env } from "./src/env.js"; 3 4export default defineConfig({ 5 schema: "./src/data/schema.ts", 6 out: "./migrations", 7 dialect: "postgresql", 8 dbCredentials: { 9 url: env.DATABASE_URL, 10 }, 11});