We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37e2b9e commit 09b685dCopy full SHA for 09b685d
1 file changed
.devcontainer/devcontainer.json
@@ -5,14 +5,17 @@
5
"vscode": {
6
"extensions": [
7
"vscjava.vscode-java-pack"
8
- ]
+ ],
9
+ "settings": {
10
+ "workbench.startupEditor": "none"
11
+ }
12
}
13
},
14
"features": {
15
"ghcr.io/devcontainers/features/java:1": {
16
"version": "21"
17
18
- "postCreateCommand": "code --install-extension ${containerWorkspaceFolder}/extension/liquid-java-0.0.15.vsix && npm install",
- "postStartCommand": "code examples/demo/src/"
-}
19
+ "postCreateCommand": "echo 'Installing extension and dependencies...' && code --install-extension ${containerWorkspaceFolder}/extension/liquid-java-0.0.15.vsix --force && npm install",
20
+ "postAttachCommand": "echo 'Opening examples...' && find ${containerWorkspaceFolder}/examples -type f -name '*.java' | head -1 | xargs code"
21
+}
0 commit comments