kvm/.devcontainer/devcontainer.json
Alex Goodkind 7e64a529f8
Some checks failed
build image / Build (push) Has been cancelled
ui-lint / UI Lint (push) Has been cancelled
chore: add VSCode extensions for improved development environment (#509)
2025-05-23 14:38:15 +02:00

28 lines
625 B
JSON

{
"name": "JetKVM",
"image": "mcr.microsoft.com/devcontainers/go:1-1.23-bookworm",
"features": {
"ghcr.io/devcontainers/features/node:1": {
// Should match what is defined in ui/package.json
"version": "22.15.0"
}
},
"mounts": [
"source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,consistency=cached"
],
"customizations": {
"vscode": {
"extensions": [
"bradlc.vscode-tailwindcss",
"GitHub.vscode-pull-request-github",
"dbaeumer.vscode-eslint",
"golang.go",
"ms-vscode.makefile-tools",
"esbenp.prettier-vscode",
"github.vscode-github-actions"
]
}
}
}