mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 18:51:23 +00:00
📚 Update add-on documentation to use new YAML configuration format
This commit is contained in:
parent
9413272884
commit
c4b002b68f
1 changed files with 10 additions and 14 deletions
24
README.md
24
README.md
|
@ -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!_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue