setup Command
What It’s For
Bootstrap development environments consistently across repositories.
What It Does
- Runs repository setup scripts in workspace order.
- Supports targeting selected repositories with
--only. - Reports skipped repositories and setup failures in a final summary.
Usage
arashi setup [options]Key Options
--only <repo>run setup for specific repositories (repeatable).-v, --verboseprint full setup script output.
Examples
# Run setup across all repositoriesarashi setup
# Run setup for selected repositoriesarashi setup --only api --only web
# Show full script output while setup runsarashi setup --verboseNotes
- Setup targets without scripts are reported as skipped.
- Failed or timed-out setup runs return a non-zero exit code.