open, interoperable sandbox platform for agents and humans 📦 ✨ pocketenv.io
claude-code atproto sandbox openclaw agent
at main 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}