kv-music/.devcontainer/devcontainer.json
2026-02-05 18:47:36 +02:00

20 lines
511 B
JSON

{
"name": "Alpine Bun Dev Container",
"image": "alpine:latest",
"features": {
"ghcr.io/shyim/devcontainers-features/bun:0": {},
"ghcr.io/devcontainer-config/features/dot-config:3": {}
},
"postCreateCommand": "apk add --no-cache git && bun --version",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.sendKeybindingsToShell": true,
"workbench.colorTheme": "Lilac"
},
"extensions": [
"shubham-saudolla.lilac"
]
}
}
}