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.

Add startup callback to serve in modal sandbox

+9 -4
+9 -4
apps/modal-sandbox/src/index.ts
··· 32 32 const url = chalk.greenBright(`http://localhost:${PORT}`); 33 33 consola.info(`Starting server on ${url}`); 34 34 35 - serve({ 36 - fetch: app.fetch, 37 - port: PORT, 38 - }); 35 + serve( 36 + { 37 + fetch: app.fetch, 38 + port: PORT, 39 + }, 40 + () => { 41 + consola.info(`Server started successfully`); 42 + }, 43 + );