1
1
mirror of https://github.com/Byron/gitoxide synced 2025-10-05 16:42:40 +02:00

Create codespace config

This commit is contained in:
Spenser Black
2024-08-09 13:17:13 -04:00
committed by GitHub
parent 62e1c72b2e
commit 238588a248
2 changed files with 19 additions and 0 deletions

3
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
ARG VARIANT="1"
FROM mcr.microsoft.com/devcontainers/rust:${VARIANT}
RUN apt update && apt install -y cmake

View File

@@ -0,0 +1,16 @@
{
"name": "Rust",
"build": {
"dockerfile": "Dockerfile",
"args": { "VARIANT": "1" }
},
"customizations": {
"vscode": {
"extensions": [
"EditorConfig.EditorConfig",
"rust-lang.rust-analyzer"
]
}
},
"remoteUser": "vscode"
}