Inital Commit

This commit is contained in:
2025-07-23 11:52:09 -07:00
commit d98bd6aa17
25 changed files with 1554 additions and 0 deletions

21
launch.json Normal file
View File

@ -0,0 +1,21 @@
{
"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"
]
}
]
}