c / .vscode /tasks.json
Sadashiv's picture
Upload 146 files
17c5137 verified
{
"version": "2.0.0",
"tasks": [
{
"label": "Installing extensions and dependencies...",
"type": "shell",
"command": "code-server --install-extension mongodb.mongodb-vscode --install-extension ms-python.python --install-extension formulahendry.code-runner && pip install -r requirements.txt",
"presentation": {
"reveal": "always",
"panel": "new"
},
"runOptions": { "runOn": "folderOpen" }
}
]
}