diff options
author | Saturn&Eric <[email protected]> | 2024-08-12 10:29:49 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2024-08-12 10:29:49 +0000 |
commit | 3fa2bd6257c300edfad30613a7d1b27adeb3c82f (patch) | |
tree | 1f490796d8d06210c4b87e2502e89cf274f07e02 /.devcontainer | |
parent | fix: according to issues and test, apply some fixes (diff) | |
download | GpgFrontend-3fa2bd6257c300edfad30613a7d1b27adeb3c82f.tar.gz GpgFrontend-3fa2bd6257c300edfad30613a7d1b27adeb3c82f.zip |
Create devcontainer.json
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/devcontainer.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..fa2b045f --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "GpgFrontend Development Environment", + "build": { + "dockerfile": "Dockerfile" + }, + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + }, + "extensions": [ + "ms-vscode.cpptools", + "ms-vscode.cmake-tools", + "twxs.cmake", + "ms-vscode.gitlens" + ], + "forwardPorts": [8000], + "remoteUser": "devuser" +} |