-
Notifications
You must be signed in to change notification settings - Fork 5
/
.devcontainer.json
64 lines (56 loc) · 1.78 KB
/
.devcontainer.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
{
"name": "Web & Database Computing",
"image": "ghcr.io/uadelaide/wdc23:latest",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [8080],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"html-validate.vscode-html-validate",
"dbaeumer.vscode-eslint",
"vsls-contrib.gitdoc",
"ms-vsliveshare.vsliveshare-pack",
"tonybaloney.vscode-pets",
"unjinjang.rest-api-client"
]
}
},
// Force AMD64 architecture
"runArgs": ["--platform=linux/amd64" ],
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
"remoteUser": "root",
// Default settings
"settings": {
"extension-uninstaller.uninstall": [
"github.copilot",
"github.copilot-nightly",
"tabnine.tabnine-vscode",
"timkmecl.chatgpt"
],
"extensions.ignoreRecommendations": true,
"files.autoSave": "afterDelay",
"files.exclude": {
"**/.*": true
},
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
},
"git.autofetch": true,
"gitdoc.autoPull": "off",
"gitdoc.commitMessageFormat": "DD, TTT",
"gitdoc.commitValidationLevel": "none",
"gitdoc.enabled": false,
"gitdoc.pullOnOpen": false,
"terminal.integrated.defaultProfile.linux": "bash"
}
}