The recipes.blue monorepo recipes.blue
recipes appview atproto
2
fork

Configure Feed

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

at main 10 lines 274 B view raw
1import type { Config } from "drizzle-kit"; 2 3export default { 4 schema: "./lib/schema.ts", 5 out: "./migrations", 6 dialect: "postgresql", 7 dbCredentials: { 8 url: process.env.DATABASE_URL || 'postgres://postgres:postgres@localhost:5432/postgres', 9 } 10} satisfies Config;