forked from mrsone40/vets-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
64 lines (64 loc) · 1.26 KB
/
devcontainer.json
File metadata and controls
64 lines (64 loc) · 1.26 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "Node.js",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "14"
}
},
"customizations": {
"vscode": {
"extensions": [
"davidanson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"esbenp.prettier-vscode",
"github.vscode-pull-request-github",
"stylelint.vscode-stylelint",
"humao.rest-client",
"ms-vsliveshare.vsliveshare",
"ms-vsliveshare.vsliveshare-pack",
"redhat.vscode-yaml",
"tyriar.sort-lines",
"visualstudioexptteam.vscodeintellicode",
"wayou.vscode-todo-highlight"
],
"settings": {
"editor.formatOnSave": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.startupEditor": "readme"
},
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash"
}
},
"forwardPorts": [
3000,
3001,
3002
],
"postCreateCommand": "./.devcontainer/codespaces-create.sh",
"remoteUser": "node",
"hostRequirements": {
"cpus": 16,
"memory": "32gb",
"storage": "128gb"
},
"portsAttributes": {
"3000": {
"label": "vets-api"
},
"3001": {
"label": "vets-website"
},
"3002": {
"label": "content-build"
}
}
}