📚 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:
```json
{
"log_level": "info",
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"packages": [
"mariadb-client"
],
"init_commands": [
"ls -la"
],
"disable_telemetry": false
}
```yaml
log_level: info
ssl: false
certfile: fullchain.pem
keyfile: privkey.pem
packages:
- mariadb-client
init_commands:
- ls -la
disable_telemetry: false
```
**Note**: _This is just an example, don't copy and paste it! Create your own!_