From 5118353402273f8936392820a4c4390f86a74b66 Mon Sep 17 00:00:00 2001 From: Psenfft Date: Wed, 16 Apr 2025 19:44:19 +0200 Subject: [PATCH] Create devcontainer.json --- .devcontainer/devcontainer.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..ee464b0 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -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": {} +}