preview_dataset / .vscode /launch.json
Emil Ernerfeldt
Add code to download dataset and visualize with Rerun
1602469
raw
history blame
1.55 kB
{
// 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
"version": "0.2.0",
"configurations": [
// Python
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
// Rust:
{
"name": "Debug 'rerun_example_lerobot'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"build"
],
"filter": {
"name": "rerun_example_lerobot",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}",
"env": {
"RUST_LOG": "debug"
}
},
{
"name": "Launch Rust tests",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--all-features"
],
"filter": {
"kind": "lib"
}
},
"cwd": "${workspaceFolder}",
"env": {
"RUST_LOG": "debug"
}
},
]
}