Skip to content

Commit

Permalink
📚 Update add-on documentation to use new YAML configuration format
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed Feb 14, 2020
1 parent cc8f6df commit d09d97b
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,17 @@ comparison to installing any other Hass.io add-on.

Example add-on configuration:

```json
{
"log_level": "info",
"github_access_token": "abcdef1234567890abcdef0123456789abcdef01",
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"system_packages": [
"ffmpeg"
],
"init_commands": [
"pip install virtualenv",
"pip install yamllint"
]
}
```yaml
log_level: info
github_access_token: abcdef1234567890abcdef0123456789abcdef01
ssl: true
certfile: fullchain.pem
keyfile: privkey.pem
system_packages:
- ffmpeg
init_commands:
- pip install virtualenv
- pip install yamllint
```
**Note**: _This is just an example, don't copy and past it! Create your own!_
Expand Down

0 comments on commit d09d97b

Please sign in to comment.