mirror your GitHub repos to tangled.org automatically
1

Configure Feed

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

at main 332 B View raw
1import process from 'node:process' 2import { defineConfig } from 'drizzle-kit' 3 4export default defineConfig({ 5 dialect: 'postgresql', 6 schema: './server/db/schema.ts', 7 out: './server/db/migrations', 8 dbCredentials: { 9 url: process.env.NUXT_DATABASE_URL ?? '', 10 }, 11 casing: 'snake_case', 12 strict: true, 13 verbose: true, 14})