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 main 11 lines 242 B view raw
1import "dotenv/config"; 2import { defineConfig } from "drizzle-kit"; 3import { env } from "./src/lib/env"; 4 5export default defineConfig({ 6 dialect: "postgresql", 7 schema: "./src/schema", 8 dbCredentials: { 9 url: env.POSTGRES_URL, 10 }, 11});