solutions/.devcontainer/devcontainer.json

21 lines
532 B
JSON

{
"name": "Substrate Node template",
"context": "..",
"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
],
"preCreateCommand": "cargo build --release && cargo check",
"postStartCommand": "./target/release/node-template --dev --ws-external",
"image": "paritytech/substrate-playground-template-node-template:sha-c9fda53"
}