32 lines
1.1 KiB
JSON
32 lines
1.1 KiB
JSON
{
|
|
"image": "mcr.microsoft.com/devcontainers/python",
|
|
"appPort": ["8123:8123"],
|
|
"postCreateCommand": "tools/devcontainer/postcreate",
|
|
// "postStartCommand": ". /workspaces/go-hass-agent/home-assistant/venv/bin/activate && hass -c $HA_PATH/config",
|
|
"remoteEnv": {
|
|
"PATH": "${containerEnv:PATH}:/usr/local/go/bin:/home/vscode/go/bin",
|
|
"GO_DL": "go1.20.5.linux-amd64.tar.gz",
|
|
"HA_PATH": "/workspaces/go-hass-agent/home-assistant",
|
|
"DISPLAY": "${localEnv:DISPLAY}"
|
|
},
|
|
"mounts": [
|
|
"source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=cached"
|
|
],
|
|
"shutdownAction": "stopContainer",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"vivaxy.vscode-conventional-commits",
|
|
"eamodio.gitlens",
|
|
"golang.go",
|
|
"premparihar.gotestexplorer",
|
|
"ymotongpoo.licenser",
|
|
"esbenp.prettier-vscode",
|
|
]}
|
|
},
|
|
"runArgs": [
|
|
"--userns=keep-id:uid=1000,gid=1000"
|
|
],
|
|
"containerUser": "vscode",
|
|
"updateRemoteUserUID": true
|
|
} |