{ "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": [] } ] }