solutions/.devcontainer/devcontainer.json

19 lines
405 B
JSON
Raw Normal View History

2020-06-17 12:16:26 +00:00
{
2020-06-19 02:35:19 +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
],
2020-06-23 12:44:58 +00:00
"image": "paritytech/substrate-playground-template-node-template:sha-aab3a40"
2020-06-19 02:35:19 +00:00
}