Files
baseball-db/.vscode/launch.json
2025-04-18 08:14:37 -05:00

51 lines
1.2 KiB
JSON

{
// 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": [
{
"name": "Python: convert_to_sportspress",
"type": "python",
"request": "launch",
"module": "src",
"args": [
"convert",
"sportspress",
"data/2025-hounds.csv",
"data/output/out.csv",
],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "generate calendar",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "src",
"args": [
"generate",
"calendar",
"./data/2025-hounds.csv"
],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "generate calendar config",
"type": "python",
"request": "launch",
"cwd": "${workspaceFolder}",
"module": "src",
"args": [
"generate",
"calendar-config",
"./data/2024-hounds.csv",
"./data/output/"
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}