mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 02:31:34 +00:00
* Add new repository workflow * Prettified Code! * Address add-on lint errors * Address add-on lint errors Co-authored-by: frenck <frenck@users.noreply.github.com>
36 lines
912 B
JSON
Executable file
36 lines
912 B
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",
|
|
"ingress": true,
|
|
"ingress_port": 1337,
|
|
"panel_icon": "mdi:microsoft-visual-studio-code",
|
|
"startup": "services",
|
|
"init": false,
|
|
"arch": ["aarch64", "amd64"],
|
|
"auto_uart": true,
|
|
"hassio_api": true,
|
|
"hassio_role": "manager",
|
|
"homeassistant_api": true,
|
|
"map": [
|
|
"config:rw",
|
|
"ssl:rw",
|
|
"addons:rw",
|
|
"media:rw",
|
|
"share:rw",
|
|
"backup:rw"
|
|
],
|
|
"services": ["mysql:want", "mqtt:want"],
|
|
"options": {
|
|
"packages": [],
|
|
"init_commands": []
|
|
},
|
|
"schema": {
|
|
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
|
"config_path": "str?",
|
|
"packages": ["str"],
|
|
"init_commands": ["str"]
|
|
}
|
|
}
|