-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathdevcontainer.json
More file actions
38 lines (38 loc) · 986 Bytes
/
devcontainer.json
File metadata and controls
38 lines (38 loc) · 986 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
30
31
32
33
34
35
36
37
38
{
"name": "TJ-Bot",
"image": "mcr.microsoft.com/devcontainers/universal:2",
"hostRequirements": {
"cpus": 1,
"memory": "1gb",
"storage": "2gb"
},
"features": {
"ghcr.io/devcontainers/features/java:1": {
"version": "25-tem",
"jdkDistro": "tem",
"installGradle": true
},
"ghcr.io/devcontainers-contrib/features/pre-commit:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"vscjava.vscode-java-pack",
"vscjava.vscode-gradle",
"alexcvzz.vscode-sqlite"
],
"settings": {
"[java]": {
"java.compile.nullAnalysis.mode": "disabled",
"java.format.settings.url": "meta/formatting/google-style-eclipse.xml",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"java.format.enabled": true
}
}
}
},
"postCreateCommand": {
"config": "cp application/config.json.template application/config.json"
}
}