Files
baseball-db/.vscode/tasks.json
Anthony Correa 7ea5fd15df Refactor project structure and update configurations
- Renamed and deleted several Python modules
- Added new SQL and database scripts
- Updated `.vscode` and `requirements.txt` configurations
2025-08-27 08:33:51 -05:00

31 lines
740 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Truncate Database Tables",
"type": "shell",
"command": "${workspaceFolder}/.venv/bin/python", // Use this for macOS/Linux
"args": [
"${workspaceFolder}/src/scripts/truncate_tables.py"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Clear Database",
"type": "shell",
"command": "${workspaceFolder}/.venv/bin/python", // Use this for macOS/Linux
"args": [
"${workspaceFolder}/src/scripts/clear_database.py"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}