Create devcontainer.json

This commit is contained in:
Psenfft 2025-04-16 19:44:19 +02:00 committed by GitHub
parent d18b967f39
commit 5118353402
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,19 @@
{
"name": "Raspberry Pi Zero 2 W Dev",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools"
],
"mounts": [
"source=${localWorkspaceFolder}/src,target=/workspace/src,type=bind,consistency=cached"
],
"remoteUser": "vscode",
"features": {}
}