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.

at e749db1438a06bfdd8a9d9095f4d63a36cf9bf73 6 lines 200 B view raw
1import { AtpAgent } from "@atproto/api"; 2import type { AppConfig } from "./config.js"; 3 4export function createAgent(config: AppConfig): AtpAgent { 5 return new AtpAgent({ service: config.pdsUrl }); 6}