the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

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

at 1241cd4e999bb3f48dca4cab7bcff14fe6f5d6ad 10 lines 231 B view raw
1import { drizzle } from "drizzle-orm/node-postgres"; 2import pg from "pg"; 3 4export function getConnection() { 5 const pool = new pg.Pool({ 6 connectionString: process.env.POSTGRES_URL, 7 max: 20, 8 }); 9 return drizzle(pool); 10}