97e129a855
- Look for config at $XDG_CONFIG_HOME/converge/config.yaml by default - --config still overrides to an explicit path - Falls back to single-repo --repo mode if no config file found - New defaultConfigPath and configFileExists helpers in Converge module
14 lines
382 B
YAML
14 lines
382 B
YAML
# Example converge configuration file.
|
|
# Place at ~/.config/converge/config.yaml to use by default,
|
|
# or pass explicitly with: converge --config converge.yaml
|
|
|
|
repos:
|
|
- path: /home/jbrechtel/org
|
|
remote: origin
|
|
branch: main
|
|
- path: /work/personal/hawat
|
|
# remote defaults to "origin"
|
|
# branch defaults to "main"
|
|
|
|
# debounce_ms: 5000 # optional, defaults to 5000
|