WildCardss / src /tasks.json
Trinay16's picture
Upload 6 files
c3abc9e verified
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Species Scanner",
"type": "shell",
"command": "python",
"args": [
"app.py"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": []
},
{
"label": "Install Dependencies",
"type": "shell",
"command": "pip",
"args": [
"install",
"-r",
"requirements.txt"
],
"group": "none",
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": []
}
]
}