Files
wolweb/.devcontainer/devcontainer.json
Leandro Afonso 63f850d705 first commit
2025-10-19 20:47:58 +01:00

22 lines
612 B
JSON

{
"name": "Bun + Go Development",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/go:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "lts"
}
},
"postCreateCommand": "curl -fsSL https://bun.sh/install | bash && go install github.com/air-verse/air@latest",
"customizations": {
"vscode": {
"extensions": [
"golang.go",
"oven.bun-vscode"
]
}
},
"remoteUser": "root"
}