-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
37 lines (35 loc) · 1021 Bytes
/
devcontainer.json
File metadata and controls
37 lines (35 loc) · 1021 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
{
"name": "MERN Stack with Redis and MySQL Development",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspace",
"features": {
"ghcr.io/devcontainers/features/git:1": {}
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
},
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-vscode.vscode-typescript-next",
"mongodb.mongodb-vscode",
"ms-azuretools.vscode-docker",
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"mikestead.dotenv",
"formulahendry.auto-rename-tag",
"redhat.vscode-yaml",
"cweijan.vscode-mysql-client2"
]
}
},
"forwardPorts": [3000, 5000, 27017, 6379, 3306],
"remoteUser": "node"
}