mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 18:51:23 +00:00
53 lines
1.3 KiB
JSON
Executable file
53 lines
1.3 KiB
JSON
Executable file
{
|
|
"name": "Visual Studio Code",
|
|
"version": "dev",
|
|
"slug": "vscode",
|
|
"description": "Fully featured VSCode experience, to edit your HA config in the browser, including auto-completion!",
|
|
"url": "https://github.com/hassio-addons/addon-vscode",
|
|
"webui": "[PROTO:ssl]://[HOST]:[PORT:80]",
|
|
"ingress": true,
|
|
"ingress_port": 1337,
|
|
"panel_icon": "mdi:visual-studio-code",
|
|
"startup": "services",
|
|
"homeassistant": "0.92.0b2",
|
|
"arch": [
|
|
"amd64"
|
|
],
|
|
"boot": "auto",
|
|
"hassio_api": true,
|
|
"auth_api": true,
|
|
"hassio_role": "manager",
|
|
"homeassistant_api": true,
|
|
"auto_uart": true,
|
|
"ports": {
|
|
"80/tcp": null
|
|
},
|
|
"ports_description": {
|
|
"80/tcp": "VSCode (Not required for Ingress)"
|
|
},
|
|
"map": [
|
|
"config:rw",
|
|
"ssl:rw",
|
|
"addons:rw",
|
|
"share:rw",
|
|
"backup:rw"
|
|
],
|
|
"options": {
|
|
"ssl": true,
|
|
"certfile": "fullchain.pem",
|
|
"keyfile": "privkey.pem",
|
|
"packages": [],
|
|
"init_commands": [],
|
|
"disable_telemetry": false
|
|
},
|
|
"schema": {
|
|
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
|
|
"ssl": "bool",
|
|
"certfile": "str",
|
|
"keyfile": "str",
|
|
"packages": ["str"],
|
|
"init_commands": ["str"],
|
|
"disable_telemetry": "bool?",
|
|
"leave_front_door_open": "bool?"
|
|
}
|
|
}
|