| 1234567891011121314151617181920212223242526 |
- {
- "name": "Goldair Climate dev",
- "image": "ludeeus/container:integration",
- "context": "..",
- "appPort": 8123,
- "postCreateCommand": "dc install",
- "runArgs": ["-e", "GIT_EDITOR=code --wait"],
- "extensions": [
- "ms-python.python",
- "visualstudioexptteam.vscodeintellicode",
- "redhat.vscode-yaml",
- "esbenp.prettier-vscode",
- "ryanluker.vscode-coverage-gutters"
- ],
- "settings": {
- "files.exclude": {
- "config/custom_components/goldair_climate": true
- },
- "python.pythonPath": "/usr/bin/python",
- "terminal.integrated.shell.linux": "/bin/bash"
- },
- "mounts": [
- "source=${env:HOME}${env:USERPROFILE}/.ssh,target=/tmp/.ssh,type=bind,consistency=cached",
- "source=${localWorkspaceFolder}/config,target=/config,type=bind,consistency=cached"
- ]
- }
|