-
Notifications
You must be signed in to change notification settings - Fork 66.8k
Expand file tree
/
Copy pathdevcontainer.json
More file actions
52 lines (45 loc) · 1.19 KB
/
devcontainer.json
File metadata and controls
52 lines (45 loc) · 1.19 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "Team A Secure Codespace Config",
"build": {
"dockerfile": "../Dockerfile.hardened",
"args": { "VARIANT": "22" }
},
// Team A specific minimal features
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "2.40.1"
}
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"cSpell.language": ",en",
"git.autofetch": false,
// Team A specific settings
"editor.formatOnSave": true,
"eslint.validate": ["javascript", "typescript", "markdown"]
},
// Team A minimal essential extensions
"extensions": [
"dbaeumer.vscode-eslint",
"sissel.shopify-liquid",
"davidanson.vscode-markdownlint",
"bierner.markdown-preview-github-styles"
]
}
},
"forwardPorts": [4000],
"portsAttributes": {
"4000": {
"label": "Team A Review"
}
},
// Security-first approach - manual setup required
"onCreateCommand": "echo 'Team A secure container ready. Manual setup required for security.'",
"remoteUser": "node",
"hostRequirements": {
"memory": "8gb",
"cpus": "2"
}
}