[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto skywatched.app
0

Configure Feed

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

skywatched / drizzle.config.ts
366 B 16 lines
1import { defineConfig } from 'drizzle-kit'; 2if (!process.env.DATABASE_URL) throw new Error('DATABASE_URL is not set'); 3 4export default defineConfig({ 5 schema: './src/lib/server/db/schema.ts', 6 7 dbCredentials: { 8 url: process.env.DATABASE_URL, 9 authToken: process.env.DATABASE_AUTH_TOKEN 10 }, 11 12 verbose: true, 13 strict: true, 14 driver: 'turso', 15 dialect: 'sqlite' 16});