v2.0.4

RyanCodrai/turbovecv2.0.4Jun 20, 2026by lipku

AI Summary

Version 2.0.4 adds support for YAML configuration files, allowing users to configure the application via `config.yaml` or override settings via command-line arguments with a specific priority order.

Key Highlights

  • YAML configuration file support
  • Ability to use multiple config files (dev/prod)
  • CLI argument priority override

New Features

  • YAML configuration support
  • Support for using different config files via CLI (-c flag)
  • CLI argument priority system (CLI args > YAML > argparse defaults)

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
```