WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at f94f86fb4d366a3a6373dd3adfc93012a01bfc20 10 lines 229 B view raw
1import { defineConfig } from "drizzle-kit"; 2 3export default defineConfig({ 4 schema: "../../packages/db/src/schema.ts", 5 out: "./drizzle", 6 dialect: "postgresql", 7 dbCredentials: { 8 url: process.env.DATABASE_URL!, 9 }, 10});