summaryrefslogtreecommitdiffstats
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r--.devcontainer/devcontainer.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..5e78e03
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,26 @@
+{
+ "name": "HDF5 Developer",
+ "build": {
+ "context": "..",
+ "dockerfile": "Dockerfile"
+ },
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "ms-python.python",
+ "ms-toolsai.jupyter",
+ "ms-vscode.cpptools",
+ "ms-vscode.live-server",
+ "ms-vscode-remote.remote-containers",
+ "ms-azuretools.vscode-docker",
+ "h5web.vscode-h5web",
+ "davidanson.vscode-markdownlint"
+ ],
+ "settings": {
+ "C_Cpp.default.cppStandard": "c++17",
+ "C_Cpp.default.cStandard": "c99",
+ "terminal.integrated.shell.linux": "/bin/bash"
+ }
+ }
+ }
+}