v2.0.4
ekzhang/borev2.0.4Jun 20, 2026by lipku
AI Summary
Adds support for YAML configuration files, allowing users to define settings via a config file with CLI arguments taking precedence over defaults.
Key Highlights
- Support for YAML configuration files
- Config file priority system: CLI args > YAML > argparse defaults
- Ability to skip YAML and use CLI only
New Features
- YAML configuration file support
- Config file priority system
Full Release Notes
Support yaml config ```shell # Usage: cp config.yaml.example config.yaml # create your config python app.py # start with config.yaml python app.py -c config_prod.yaml # use a different config file python app.py -c '' # skip yaml, CLI only # Priority: CLI args > YAML > argparse defaults ```