Skip to content

Commit

Permalink
Configure devcontainer for codespace
Browse files Browse the repository at this point in the history
Provide a ready to work environnement on codespaces with bazel and golang and their extensions for vscode.

Signed-off-by: Matthieu MOREL <[email protected]>
  • Loading branch information
mmorel-35 committed Feb 17, 2024
1 parent 0fa0005 commit 143c291
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-22.04",
"features": {
"ghcr.io/balazs23/devcontainers-features/bazel:1": {
"bazelisk": "v1.19.0"
},
"ghcr.io/devcontainers/features/go:1": {
"version": "1.20"
},
"ghcr.io/devcontainers/features/python:1": {
}
},
"customizations": {
"vscode": {
"extensions": [
"bazelbuild.vscode-bazel",
"golang.go",
"ms-vscode.cpptools-extension-pack"
]
}
}
}

0 comments on commit 143c291

Please sign in to comment.