Files
Pumpkin/.devcontainer/devcontainer.json
2024-08-01 18:26:11 +00:00

22 lines
484 B
JSON

{
"name": "Pumpkin",
"image": "mcr.microsoft.com/devcontainers/base:noble",
"features": {
"ghcr.io/devcontainers/features/rust:1": {}
},
"mounts": [
// mount SSH config & public keys from host to enable SSH-based Git remotes
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.ssh,target=/home/vscode/.ssh,readonly,type=bind"
],
"forwardPorts": [
25565
],
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens",
"Swellaby.rust-pack"
]
}
}
}