v2.0.4

ente/entev2.0.4Jun 20, 2026by lipku

AI Summary

Adds native support for YAML configuration files, allowing users to define settings via a file while maintaining a specific priority order for configuration loading.

Key Highlights

  • Adds YAML configuration file support
  • Defines config priority: CLI args > YAML > argparse defaults
  • Allows using different config files via CLI arguments

New Features

  • YAML configuration support
  • Config file loading logic

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