Files
video-pipeline/launch.json
2025-07-23 11:52:09 -07:00

22 lines
499 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "🐍 Debug LCS Pipeline",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal",
"justMyCode": false,
"env": {
"PYTHONPATH": "${workspaceFolder}"
},
"cwd": "${workspaceFolder}",
"args": [
// You can pass specific stream directories here if needed
// Example: "Z:\\2025.06.20"
]
}
]
}