solutions/.devcontainer/devcontainer.json

18 lines
358 B
JSON
Raw Normal View History

2020-06-17 12:16:26 +00:00
{
"name": "Substrate Node template",
"dockerFile": "Dockerfile",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"lldb.executable": "/usr/bin/lldb"
},
"extensions": [
"rust-lang.rust",
"bungcip.better-toml",
"vadimcn.vscode-lldb"
],
"forwardPorts": [
3000,
9944
]
}