feat: add verbose and dry run

This commit is contained in:
2026-09-07 14:12:53 +00:00
parent ab93e7ef4f
commit b2a0c08256
5 changed files with 83 additions and 29 deletions

View File

@@ -10,10 +10,14 @@ You will need rust installed. Clone repo and run:
cargo install --path .
```
To print the underlying docker commands as they run, build with debug
assertions:
## seeing what it runs
`-v` prints each docker command as it runs, and `--dry-run` prints the ones it
would run without running them. Both work before or after the subcommand.
```bash
cargo install --path . --debug
ahab -v django test
ahab --dry-run postgres import ./dump
```
## shell completion