summaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
Diffstat (limited to '.devcontainer/devcontainer.json')
-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"
+ ]
+ }
+ }
+}