-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
73 lines (68 loc) · 2.04 KB
/
devcontainer.json
File metadata and controls
73 lines (68 loc) · 2.04 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
65
66
67
68
69
70
71
72
73
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/javascript-node
{
"name": "VSCode Devcontainer for SAP CAP",
"build":
{
"dockerfile": "Dockerfile"/* ,
// Update 'VARIANT' to pick a Node version: 12, 14, 16
"args": { "VARIANT": "latest" } */
},
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash"
},
"zsh": {
"path": "zsh"
},
"fish": {
"path": "fish"
},
"tmux": {
"path": "tmux",
"icon": "terminal-tmux"
},
"pwsh": {
"path": "pwsh",
"icon": "terminal-powershell"
}
},
"terminal.integrated.defaultProfile.linux": "bash"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"esbenp.prettier-vscode",
"gruntfuggly.todo-tree",
"ms-vscode.js-debug-nightly",
"dbaeumer.vscode-eslint",
"sapse.vscode-cds",
"sapse.sap-ux-fiori-tools-extension-pack",
"sapos.yeoman-ui",
"hookyqr.beautify",
"coenraads.bracket-pair-colorizer-2",
"eamodio.gitlens",
"yzhang.markdown-all-in-one",
"fivepointseven.node-version",
"bengreenier.vscode-node-readme",
"christian-kohler.path-intellisense",
"humao.rest-client",
"saposs.sap-hana-driver-for-sqltools",
"sapse.vsc-extension-sa",
"mtxr.sqltools",
"pflannery.vscode-versionlens",
"visualstudioexptteam.vscodeintellicode",
"vscode-icons-team.vscode-icons",
"saposs.xml-toolkit",
"dotjoshjohnson.xml",
"SAPSE.hana-database-explorer"
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [ 4004 ],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node"
}