example restaurant review app on atproto
6
fork

Configure Feed

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

at main 14 lines 365 B view raw
1import { 2 drizzle, 3 type BetterSQLite3Database, 4} from "drizzle-orm/better-sqlite3"; 5import Database from "better-sqlite3"; 6import * as schema from "./schema"; 7 8const sqlite = new Database("foodz.db"); 9export const db: BetterSQLite3Database<typeof schema> = drizzle({ 10 client: sqlite, 11 schema, 12}); 13 14export type DrizzleClient = BetterSQLite3Database<typeof schema>;