vvbox 0.1.0

Lightweight sandbox runner for macOS 26 using Apple container CLI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! vvbox - lightweight sandbox runner for macOS 26.
//!
//! Generates a git worktree snapshot, runs commands in an isolated container,
//! and produces a patch you can review and apply. Supports simple service
//! containers for dependencies like databases.
//!
//! See `docs/overview.md` and `docs/cli.md` for usage.

use clap::Parser;

fn main() {
    let cli = vvbox::cli::Cli::parse();
    vvbox::commands::run(cli);
}