Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.joggr.ai/llms.txt

Use this file to discover all available pages before exploring further.

The sandbox key controls what happens when you run jog sandbox create. It defines sandbox-type-specific configuration for local worktrees, containers, and remote cloud environments.

Properties

sandbox.local
LocalSandbox
Configuration for local sandboxes — git worktree-based environments on your machine.
sandbox.container
ContainerSandbox
Coming soon. Configuration for container sandboxes — OCI-compatible environments with filesystem and network isolation.
sandbox.remote
RemoteSandbox
Coming soon. Configuration for remote sandboxes — cloud-hosted environments that run while your laptop sleeps.

Examples

Local sandbox

{
  "$schema": "https://raw.githubusercontent.com/joggrdocs/home/refs/heads/main/schema.json",
  "sandbox": {
    "local": {
      "copy": [".env", ".env.local", ".turbo"],
      "run": ["pnpm install", "pnpm build"],
      "command": "claude"
    }
  }
}