solutions/.devcontainer/devcontainer.json

19 lines
405 B
JSON

{
"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
],
"image": "paritytech/substrate-playground-template-node-template:sha-ff0fa24"
}