Add Devcontainer Support (#3799)

* attempt at dual mac builds

* add initial devcontainer

* correct dependency import
This commit is contained in:
Yeastplume
2024-11-13 12:04:02 +00:00
committed by GitHub
parent 118f885468
commit 6c012043c0
2 changed files with 26 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "rust-grin-devcontainer",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"vadimcn.vscode-lldb",
"tamasfe.even-better-toml",
"rust-lang.rust-analyzer",
"esbenp.prettier-vscode",
"github.copilot",
"github.copilot-chat"
]
}
}
}