A decentralized music tracking and discovery platform built on AT Protocol 馃幍 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
96
fork

Configure Feed

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

at feat/pgpull 8 lines 236 B view raw
1import { drizzle } from "drizzle-orm/node-postgres"; 2import { env } from "lib/env"; 3import pg from "pg"; 4 5const pool = new pg.Pool({ connectionString: env.XATA_POSTGRES_URL, max: 20 }); 6const db = drizzle(pool); 7 8export default { db };