Exosphere is a set of small, modular, self-hostable community tools built on the AT Protocol. app.exosphere.site
6
fork

Configure Feed

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

at main 14 lines 347 B view raw
1import { defineConfig } from "drizzle-kit"; 2 3export default defineConfig({ 4 dialect: "sqlite", 5 schema: [ 6 "./packages/core/src/db/schema/*.ts", 7 "./packages/feature-requests/src/db/schema.ts", 8 "./packages/feeds/src/db/schema.ts", 9 "./packages/kanban/src/db/schema.ts", 10 ], 11 dbCredentials: { 12 url: "exosphere.sqlite", 13 }, 14});