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 exampleen,de).-y, --yes– run non-interactively with defaults.--force– overwrite existing files.
Examples
Section titled “Examples”Create a bundle in the current directory interactively:
bino initCreate a bundle in a new directory with explicit title and language:
bino init --directory monthly-report --title "Monthly Sales" --language enRun non-interactively with defaults, overwriting existing files:
bino init -d my-report -y --forceAfter initialization, continue with Your first report.