39 lines
1020 B
JSON
39 lines
1020 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/rust
|
|
{
|
|
"name": "Pawctioneer Dev Container",
|
|
"build": {
|
|
"dockerfile": "Dockerfile.devcontainer",
|
|
"context": "."
|
|
},
|
|
"features": {
|
|
"ghcr.io/braun-daniel/devcontainer-features/fzf:1": {},
|
|
"ghcr.io/stuartleeks/dev-container-features/shell-history:0": {},
|
|
"ghcr.io/devcontainers-extra/features/npm-packages:1": {
|
|
"packages": "backlog.md"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"eamodio.gitlens",
|
|
"ms-azuretools.vscode-docker",
|
|
"qwtel.sqlite-viewer",
|
|
"rust-lang.rust-analyzer",
|
|
"serayuzgur.crates",
|
|
"tamasfe.even-better-toml"
|
|
]
|
|
}
|
|
},
|
|
"containerEnv": {
|
|
"GIT_EDITOR": "cursor --wait"
|
|
},
|
|
"mounts": [
|
|
{
|
|
"source": "devcontainer-cargo-cache-${devcontainerId}",
|
|
"target": "/usr/local/cargo",
|
|
"type": "volume"
|
|
}
|
|
],
|
|
"postCreateCommand": "sudo apt update && sudo apt install -y sqlite3"
|
|
} |