We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e028f42 commit 77e4a87Copy full SHA for 77e4a87
1 file changed
.devcontainer/devcontainer.json
@@ -1,12 +1,18 @@
1
{
2
"name": "HTML, CSS & JS",
3
"image": "mcr.microsoft.com/devcontainers/universal:2",
4
+ "features": {
5
+ "ghcr.io/devcontainers/features/node:1": {
6
+ "version": "lts"
7
+ },
8
+ "ghcr.io/devcontainers/features/sqlite:1": {}
9
10
"hostRequirements": {
11
"cpus": 4
12
},
13
"waitFor": "onCreateCommand",
- "updateContentCommand": "npm install -r requirements.txt",
- "postCreateCommand": "",
14
+ "updateContentCommand": "npm install",
15
+ "postCreateCommand": "", // Add setup scripts here if needed
16
"customizations": {
17
"vscode": {
18
"settings": {
@@ -55,7 +61,8 @@
55
61
56
62
"portsAttributes": {
57
63
"5000": {
58
- "label": "Application"
64
+ "label": "Application",
65
+ "onAutoForward": "openBrowser"
59
66
}
60
67
68
"forwardPorts": [5000]
0 commit comments