Skip to content

Commit

Permalink
Support VSCode for debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Sep 10, 2024
1 parent 77e6ee8 commit 6ec702b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch UI",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/ui",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start"],
"env": {
"NODE_ENV": "development"
}
},
{
"name": "Launch Platform",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/platform"
}
]
}

0 comments on commit 6ec702b

Please sign in to comment.