-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathdevcontainer.json
More file actions
29 lines (29 loc) · 904 Bytes
/
devcontainer.json
File metadata and controls
29 lines (29 loc) · 904 Bytes
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
{
"name": "GraalPy",
"build": { "dockerfile": "Dockerfile" },
"postCreateCommand": {
"vscodeinit": "sudo chmod a+rwx ../ && mx -y sforceimports && mx -y vscodeinit && ln -sf $PWD/../graalpython.code-workspace graalpython.code-workspace && mx -y build --target GRAALPY_JVM_STANDALONE"
},
"hostRequirements": {
"cpus": 2,
"memory": "16gb",
"storage": "64gb"
},
"customizations": {
"vscode": {
"extensions": [
"vscjava.vscode-java-pack",
"zoma.vscode-auto-open-workspace"
],
"settings": {
"autoOpenWorkspace.enableAutoOpenIfSingleWorkspace": true,
"java.autobuild.enabled": false
}
},
"codespaces": {
"openFiles": [
"docs/contributor/CONTRIBUTING.md"
]
}
}
}