fix: update yq v4 syntax for Frigate config upload command

This commit is contained in:
Jakub Sojka 2025-11-19 14:41:43 +01:00
parent cf328ded80
commit a3c94b15b1

View File

@ -247,7 +247,7 @@ curl -X POST http://frigate_host:5000/api/config/save -d @config.json
if you'd like you can use your yaml config directly by using [`yq`](https://github.com/mikefarah/yq) to convert it to json:
```bash
yq r -j config.yml | curl -X POST http://frigate_host:5000/api/config/save -d @-
yq -o=json '.' config.yaml | curl -X POST 'http://frigate_host:5000/api/config/save?save_option=saveonly' --data-binary @-
```
### Via Command Line