Statusphere, but in atcute and SvelteKit
atproto svelte sveltekit drizzle atcute typescript
19
fork

Configure Feed

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

at trunk 13 lines 304 B view raw
1import { defineConfig } from 'drizzle-kit'; 2 3if (!process.env.DATABASE_URL) { 4 throw new Error('DATABASE_URL is not set'); 5} 6 7export default defineConfig({ 8 schema: './src/lib/server/db/schema.ts', 9 dialect: 'sqlite', 10 dbCredentials: { url: process.env.DATABASE_URL }, 11 verbose: true, 12 strict: true, 13});