Add build task

This commit is contained in:
Chidi Williams 2022-09-25 12:25:02 +01:00
commit 292186d232

27
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "source venv/bin/activate; make",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "run",
"type": "shell",
"command": "source venv/bin/activate; python main.py",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}