A simple Bluesky bot to make sense of the noise, with responses powered by Gemini, similar to Grok.
9
fork

Configure Feed

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

at main 12 lines 366 B view raw
1import { drizzle } from "drizzle-orm/bun-sqlite"; 2import { migrate } from "drizzle-orm/bun-sqlite/migrator"; 3import { Database } from "bun:sqlite"; 4import * as schema from "./schema"; 5import { env } from "../env"; 6 7const sqlite = new Database(env.DB_PATH); 8const db = drizzle(sqlite, { schema }); 9 10migrate(db, { migrationsFolder: "./drizzle" }); 11 12export default db;