bivvy config
Displays the fully resolved configuration after merging all sources.
Usage
bivvy config # Show as YAMLbivvy config --json # Output as JSONbivvy config --yaml # Output as YAML (default)bivvy config --merged # Show fully merged configConfiguration Sources
Configuration is merged in this order:
extends:(remote base config)~/.bivvy/config.yml(user global).bivvy/config.yml(project).bivvy/config.local.yml(local overrides)
Example Output
app_name: "MyApp"
settings: default_output: verbose
steps: brew: template: brew mise: template: mise depends_on: [brew] ruby_deps: template: bundler depends_on: [mise]
workflows: default: steps: [brew, mise, ruby_deps]JSON Output
bivvy config --json{ "app_name": "MyApp", "steps": { "brew": { "template": "brew" } }, "workflows": { "default": { "steps": ["brew", "mise", "ruby_deps"] } }}