RWKV-Runner/.vscode/launch.json

33 lines
1.0 KiB
JSON
Raw Normal View History

2023-05-23 11:51:43 +08:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
//
// Use Ctrl+Shift+P to Select Interpreter
"version": "0.2.0",
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
2023-06-05 22:57:01 +08:00
"program": "${workspaceFolder}/backend-python/main.py",
2023-05-23 11:51:43 +08:00
"console": "integratedTerminal",
2023-06-05 22:57:01 +08:00
"justMyCode": false
},
{
"name": "Golang",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/build/bin/testwails.exe",
"console": "integratedTerminal",
"preLaunchTask": "build dev"
},
{
"name": "Frontend",
"type": "node-terminal",
"request": "launch",
"command": "wails dev -browser"
2023-05-23 11:51:43 +08:00
}
]
}