Skip to content
GitHub

bino init

bino init creates a new workdir with sample manifests, data, and configuration. It is the recommended way to start a new report bundle.

bino init [flags]

Common flags:

  • --directory, -d – target directory (default: current directory).
  • --name – internal report name.
  • --title – human-readable report title.
  • --language – language code (for example en, de).
  • -y, --yes – run non-interactively with defaults.
  • --force – overwrite existing files.

Create a bundle in the current directory interactively:

bino init

Create a bundle in a new directory with explicit title and language:

bino init --directory monthly-report --title "Monthly Sales" --language en

Run non-interactively with defaults, overwriting existing files:

bino init -d my-report -y --force

After initialization, continue with Your first report.