📚 Update add-on documentation to use new YAML configuration format

This commit is contained in:
Franck Nijhof 2020-02-15 16:11:50 +01:00
parent 9413272884
commit c4b002b68f
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3

View file

@ -56,20 +56,16 @@ comparison to installing any other Hass.io add-on.
Example add-on configuration: Example add-on configuration:
```json ```yaml
{ log_level: info
"log_level": "info", ssl: false
"ssl": false, certfile: fullchain.pem
"certfile": "fullchain.pem", keyfile: privkey.pem
"keyfile": "privkey.pem", packages:
"packages": [ - mariadb-client
"mariadb-client" init_commands:
], - ls -la
"init_commands": [ disable_telemetry: false
"ls -la"
],
"disable_telemetry": false
}
``` ```
**Note**: _This is just an example, don't copy and paste it! Create your own!_ **Note**: _This is just an example, don't copy and paste it! Create your own!_