Files
goose/.devcontainer/devcontainer.json
Praateek Mahajan ba5ffbbe2e feat: Add devcontainer (#1248)
Signed-off-by: Praateek <praateekm@gmail.com>
2025-06-16 11:11:50 -07:00

28 lines
631 B
JSON

{
"name": "Rust Dev Container",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/rust:1": {
"version": "stable"
}
},
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"vadimcn.vscode-lldb"
]
},
"settings": {
"terminal.integrated.defaultProfile.linux": "/bin/bash"
}
},
"postCreateCommand": "cargo build",
"remoteUser": "vscode",
"mounts": [
"source=${localWorkspaceFolder}/crates,target=/workspace/crates,type=bind"
]
}