2020-06-17 12:16:26 +00:00
|
|
|
{
|
2020-06-19 02:35:19 +00:00
|
|
|
"name": "Substrate Node template",
|
2020-10-13 19:40:25 +00:00
|
|
|
"context": "..",
|
2020-06-19 02:35:19 +00:00
|
|
|
"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-10-13 19:40:25 +00:00
|
|
|
"preCreateCommand": "cargo build --release && cargo check",
|
|
|
|
"postStartCommand": "./target/release/node-template --dev --ws-external",
|
2020-08-21 12:16:59 +00:00
|
|
|
"image": "paritytech/substrate-playground-template-node-template:sha-c9fda53"
|
2020-06-19 02:35:19 +00:00
|
|
|
}
|