Skip to content

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

Terminal window
arashi setup [options]

Key Options

  • --only <repo> run setup for specific repositories (repeatable).
  • -v, --verbose print full setup script output.

Examples

Terminal window
# Run setup across all repositories
arashi setup
# Run setup for selected repositories
arashi setup --only api --only web
# Show full script output while setup runs
arashi setup --verbose

Notes

  • Setup targets without scripts are reported as skipped.
  • Failed or timed-out setup runs return a non-zero exit code.