RWKV-Runner/.vscode/launch.json

18 lines
553 B
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",
"program": "./backend-python/main.py",
"console": "integratedTerminal",
"justMyCode": false,
}
]
}