summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Newson <rnewson@apache.org>2023-05-12 15:52:42 +0000
committerGitHub <noreply@github.com>2023-05-12 15:52:42 +0000
commit6ddeac80ae0574f3e08910d9a67ac7ec721bf18e (patch)
treed6a568ec6f88ae1d5a754bf9cc36b516578ee5a9
parent85e1fa7913b5a564c1731ad86fbba294a9d9a16c (diff)
parent54b8c7322e84358871edbcbb2a5f6103c6953b09 (diff)
downloadcouchdb-6ddeac80ae0574f3e08910d9a67ac7ec721bf18e.tar.gz
Merge pull request #4599 from apache/nouveau-dev-container
add nouveau and java tools to dev container
-rw-r--r--.devcontainer/devcontainer.json13
1 files changed, 10 insertions, 3 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 3920cd9dd..491b2ecb6 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -23,7 +23,14 @@
// Your code will live inside the volume created for the container under /workspace.
"workspaceMount": "target=/workspaces/couchdb,type=volume",
"workspaceFolder": "/workspaces/couchdb",
- "postCreateCommand": "./configure && make",
+ "postCreateCommand": "./configure --enable-nouveau && make",
- "extensions": ["erlang-ls.erlang-ls"]
-} \ No newline at end of file
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "erlang-ls.erlang-ls",
+ "redhat.java"
+ ]
+ }
+ }
+}