mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 18:51:23 +00:00
✨ Initial add-on code
This commit is contained in:
parent
416e586602
commit
344e8f48be
20 changed files with 810 additions and 0 deletions
47
vscode/config.json
Executable file
47
vscode/config.json
Executable file
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"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?"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue