summaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
blob: f25e8bd8d682f4bf0906c871d6566ac252e75e39 (plain)
1
2
3
4
5
6
7
8
{
  "image": "mcr.microsoft.com/devcontainers/rust:1",
  "updateContentCommand": ["cargo", "build"],
  "postAttachCommand": ["rustlings", "watch"],
  "remoteEnv": {
    "PATH": "${containerEnv:PATH}:${containerWorkspaceFolder}/target/debug"
  }
}