CompteurElectrique/.vscode/tasks.json

22 lines
633 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Project",
"type": "shell",
"command": "source ${workspaceFolder}/.deltabotenv/bin/activate && ${workspaceFolder}/.deltabotenv/bin/python ${workspaceFolder}/src/main.py",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"clear": true
}
}
]
}