4 ms·
Ooh - can you share more about your setup with superset? I tried getting it integrated with superset a while ago with no dice.
by notsirius 1mo ago
Ooh - can you share more about your setup with superset? I tried getting it integrated with superset a while ago with no dice.
- rusch 1mo agoCurrently running codex. I run one sandbox per repo. So I create the sandbox in the repo root. Then it's a custom terminal preset: sbx run --name "yoursandbox" -- --cd "$PWD" This boots a sbx session in the worktree directory. For Claude there is no --cd so it's more hacky, but I solved it by creating a sbx kit with entrypoint script that reads a flag (e.g --cwd) from the terminal preset command and then inside the sandbox cd's there and starts claude.
- notsirius 1mo agoAh - so youre running in direct mode then? https://docs.docker.com/ai/sandboxes/workflows/#direct-mode https://docs.docker.com/ai/sandboxes/workflows/#direct-mode Def makes integrating easier but I try to avoid using direct mode for security (exposes .git folder, though there's probs a better way to protect it by disabling hooks or something)
- rusch 1mo agoYes correct. We don't use git hooks so they are globally disabled. I also see they added host worktree mode which could work well with superset since it creates the worktrees. https://docs.docker.com/ai/sandboxes/workflows/#host-worktree https://docs.docker.com/ai/sandboxes/workflows/#host-worktre...