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
4
fork

Configure Feed

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

feat(nix): include SQLite migrations and dialect configs in Nix package output

Malpercio 02e45a81 e5bb6c8b

+4 -2
+4 -2
nix/package.nix
··· 67 67 68 68 # Drizzle migrations (needed for db:migrate at deploy time) 69 69 cp -r apps/appview/drizzle $out/apps/appview/ 70 + cp -r apps/appview/drizzle-sqlite $out/apps/appview/ 70 71 71 - # drizzle.config.ts (needed by drizzle-kit migrate) 72 - cp apps/appview/drizzle.config.ts $out/apps/appview/ 72 + # Drizzle config files (needed by drizzle-kit migrate) 73 + cp apps/appview/drizzle.postgres.config.ts $out/apps/appview/ 74 + cp apps/appview/drizzle.sqlite.config.ts $out/apps/appview/ 73 75 74 76 # Web static assets (CSS, favicon — served by hono serveStatic) 75 77 cp -r apps/web/public $out/apps/web/