Skip to content

Commit 43b6a2d

Browse files
author
Bryan A. Jones
committed
Add Codespaces setup.
1 parent f196640 commit 43b6a2d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.devcontainer/devcontainer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/rust
3+
{
4+
"name": "Rust",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/rust:1-1-bullseye",
7+
// Configure tool-specific properties.
8+
"customizations": {
9+
"codespaces": {
10+
"openFiles": [
11+
"README.md"
12+
]
13+
},
14+
"vscode": {
15+
"extensions": [
16+
"rust-lang.rust-analyzer"
17+
]
18+
}
19+
}
20+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
21+
// "remoteUser": "root"
22+
}

0 commit comments

Comments
 (0)