Initial add-on code

This commit is contained in:
Franck Nijhof 2019-03-24 23:43:22 +01:00
parent 416e586602
commit 344e8f48be
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
20 changed files with 810 additions and 0 deletions

47
vscode/config.json Executable file
View 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?"
}
}