-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample-devcontainer.json
More file actions
31 lines (31 loc) · 1.05 KB
/
Copy pathsample-devcontainer.json
File metadata and controls
31 lines (31 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "WPILib 2026",
"image": "ghcr.io/npmanos/devcontainer_wpilib:2026",
"customizations": {
"vscode": {
"settings": {
"java.home": "/home/vscode/wpilib/2026/jdk",
"java.import.gradle.java.home": "/home/vscode/wpilib/2026/jdk",
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "/home/vscode/wpilib/2026/jdk",
"default": true
}
],
"terminal.integrated.env.linux": {
"JAVA_HOME": "/home/vscode/wpilib/2026/jdk"
}
},
"extensions": [
"vscjava.vscode-java-pack",
"ms-vscode.cpptools-extension-pack"
]
}
},
"postCreateCommand": "code --install-extension /home/vscode/wpilib/vscode-wpilib.vsix",
"remoteUser": "vscode",
"features": {
"ghcr.io/stuartleeks/dev-container-features/shell-history:0": {}
}
}