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.

Expose port 3000/tcp and allow unauthenticated root

+2 -2
+1 -1
apps/cf-sandbox/Dockerfile
··· 52 52 53 53 # Required during local development to access exposed ports 54 54 EXPOSE 8080 55 - EXPOSE 3000 56 55 EXPOSE 18789 56 + EXPOSE 3000/tcp 57 57 58 58 ENTRYPOINT ["/sandbox"]
+1 -1
apps/cf-sandbox/src/index.ts
··· 47 47 return c.json({ error: "Unauthorized" }, 401); 48 48 } 49 49 } else { 50 - if (!c.req.path.endsWith("/ws/terminal")) { 50 + if (!c.req.path.endsWith("/ws/terminal") && c.req.path !== "/") { 51 51 consola.warn("No Authorization header found"); 52 52 return c.json({ error: "Unauthorized" }, 401); 53 53 }