diff options
author | Robert Newson <rnewson@apache.org> | 2023-05-12 15:52:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 15:52:42 +0000 |
commit | 6ddeac80ae0574f3e08910d9a67ac7ec721bf18e (patch) | |
tree | d6a568ec6f88ae1d5a754bf9cc36b516578ee5a9 /.devcontainer/devcontainer.json | |
parent | 85e1fa7913b5a564c1731ad86fbba294a9d9a16c (diff) | |
parent | 54b8c7322e84358871edbcbb2a5f6103c6953b09 (diff) | |
download | couchdb-6ddeac80ae0574f3e08910d9a67ac7ec721bf18e.tar.gz |
Merge pull request #4599 from apache/nouveau-dev-container
add nouveau and java tools to dev container
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r-- | .devcontainer/devcontainer.json | 13 |
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" + ] + } + } +} |