addon-vscode/vscode/config.json
2019-03-24 23:43:22 +01:00

47 lines
1.1 KiB
JSON
Executable file

{
"name": "Visual Studio Code",
"version": "dev",
"slug": "vscode",
"description": "Fully feature VSCode experience, to edit your HA config in the browser, including autocompletion!",
"url": "https://github.com/hassio-addons/addon-vscode",
"webui": "[PROTO:ssl]://[HOST]:[PORT:1337]",
"startup": "services",
"arch": [
"amd64"
],
"boot": "auto",
"hassio_api": true,
"hassio_role": "default",
"homeassistant_api": true,
"host_network": false,
"auto_uart": true,
"ports": {
"1337/tcp": 1337
},
"map": [
"config:rw",
"ssl:rw",
"addons:rw",
"share:rw",
"backup:rw"
],
"options": {
"password": "",
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"packages": [],
"init_commands": []
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"password": "str",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"packages": ["str"],
"init_commands": ["str"],
"leave_front_door_open": "bool?",
"i_like_to_be_pwned": "bool?"
}
}