You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2023/05/12 14:03:01 UTC

[couchdb] 01/01: add nouveau and java tools to dev container

This is an automated email from the ASF dual-hosted git repository.

rnewson pushed a commit to branch nouveau-dev-container
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit f3af03c91ed93e1759e04cc13900e875da45050c
Author: Robert Newson <rn...@apache.org>
AuthorDate: Fri May 12 14:54:36 2023 +0100

    add nouveau and java tools to dev container
---
 .devcontainer/devcontainer.json | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 3920cd9dd..7bb22d5bd 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 --disable-fauxton --disable-docs --enable-nouveau && make",
 
-    "extensions": ["erlang-ls.erlang-ls"]
-}
\ No newline at end of file
+    "customizations": {
+        "vscode": {
+            "extensions": [
+                "erlang-ls.erlang-ls",
+                "redhat.java"
+            ]
+        }
+    }
+}