dev container review start using git.limbosolutions.com/mylimbo/devcontainers/devops:latest

This commit is contained in:
2025-11-20 21:03:20 +00:00
parent 6b78b30445
commit 107a756ae1
4 changed files with 57 additions and 139 deletions

View File

@@ -22,12 +22,6 @@
"name": "pi.bluetooth.speaker",
"path": "../pi.bluetooth.speaker"
},
// {
// "name": "kb/kb",
// "path": "../../kb/kb"
// }
],
"settings": {
"files.exclude": {
@@ -38,6 +32,8 @@
"**/.DS_Store": true,
"**/Thumbs.db": true,
"kb": true,
"runme.taskProvider.enabled": false,
"runme.scanMode": "off"
},
@@ -49,5 +45,47 @@
"rclone",
"reverseproxy"
]
}
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Run current shell file - relative",
"type": "shell",
"command": "bash",
"args": [
"${file}"
],
"options": {
"cwd": "${fileDirname}"
},
"group": {
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
},
{
"label": "Run current shell file",
"type": "shell",
"command": "bash",
"args": [
"${file}"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}
}