forked from Mluckydwyer/hw-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.devcontainer.json
33 lines (30 loc) · 907 Bytes
/
.devcontainer.json
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
{
"name": "Hardware Development Container",
"image": "mluckydwyer/hw-ci:dev",
"settings": {
//"terminal.integrated.shell.linux": "/bin/bash",
"terminal.integrated.profiles.linux": {
"default": {
"path": "bash",
"args": ["-l"]
}
},
"terminal.integrated.defaultProfile.linux": "default"
},
"forwardPorts": [5678, 5900, 6080, 8080],
"extensions": [
"austin.code-gnu-global",
"ms-vsliveshare.vsliveshare",
"technosophos.vscode-make",
"technosophos.vscode-make",
"esbenp.prettier-vscode",
"ms-python.python",
"teros-technology.teroshdl",
"wavetrace.wavetrace",
"puorc.awesome-vhdl",
"mshr-h.veriloghdl",
"tht13.html-preview-vscode",
"ms-vscode.test-adapter-converter",
"littlefoxteam.vscode-python-test-adapter"
]
}