mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-10 16:54:20 +01:00
* Add support for new audo layer * Add layer * restucture * better struct * Improve devcontainer * Fix container * Fix LN * disable lint * ignore
22 lines
577 B
JSON
22 lines
577 B
JSON
// Based on https://github.com/issacg/hassio-addon-devcontainer
|
|
{
|
|
"name": "Home Assistant Add-Ons",
|
|
"context": "..",
|
|
"dockerFile": "Dockerfile",
|
|
"appPort": "7123:8123",
|
|
"runArgs": [
|
|
"-e",
|
|
"GIT_EDITOR=code --wait",
|
|
"--privileged"
|
|
],
|
|
"extensions": [
|
|
"timonwong.shellcheck",
|
|
"esbenp.prettier-vscode"
|
|
],
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash"
|
|
},
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/test_hassio/addons/local,type=bind,consistency=delegated",
|
|
"workspaceFolder": "/workspaces/test_hassio/addons/local"
|
|
}
|