Skip to content

Commit e6424a2

Browse files
temporary add debug config
1 parent dedd257 commit e6424a2

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.vscode/launch.json

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "ipfs daemon",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "auto",
12+
"program": "/home/takashi/scripts/ipfs/go-ipfs/cmd/ipfs",
13+
"args": ["daemon"]
14+
},
15+
{
16+
"name": "Launch Package",
17+
"type": "go",
18+
"request": "launch",
19+
"mode": "auto",
20+
"program": "/home/takashi/scripts/ipfs/go-ipfs/cmd/ipfs",
21+
"args": ["swarm",
22+
"peering", "rm",
23+
"/ip4/1.2.3.4/tcp/1234/p2p/QmYyQSo1c1Ym7orWxLYvCrM2EmxFTANf8wXmmE7DWjhx5N]"
24+
],
25+
},
26+
{
27+
"name": "Connect to the ipfs daemon",
28+
"type": "go",
29+
"request": "attach",
30+
"mode": "remote",
31+
"remotePath": "${workspaceFolder}",
32+
"port": 8080,
33+
"host": "127.0.0.1"
34+
},
35+
]
36+
}

0 commit comments

Comments
 (0)