solutions/.devcontainer/devcontainer.json

26 lines
635 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",
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
],
2021-12-02 19:02:14 +00:00
"onCreateCommand": ["cargo build", "cargo check"],
2021-02-23 12:57:07 +00:00
"postStartCommand": "./target/debug/node-template --dev --ws-external",
2020-10-15 14:23:00 +00:00
"menuActions": [
{"id": "polkadotjs",
"label": "Open PolkadotJS Apps",
"type": "external-preview",
"args": ["https://polkadot.js.org/apps/?rpc=wss%3A%2F%2F/$HOST/wss"]}
]
2020-06-19 02:35:19 +00:00
}