mirror of
https://github.com/block/goose.git
synced 2026-04-28 19:49:51 +00:00
feat: Add devcontainer (#1248)
Signed-off-by: Praateek <praateekm@gmail.com>
This commit is contained in:
parent
cf9b821b19
commit
ba5ffbbe2e
2 changed files with 38 additions and 0 deletions
28
.devcontainer/devcontainer.json
Normal file
28
.devcontainer/devcontainer.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue