* Add separate task for installing backend in VSCode tasks configuration * Add preLaunchTask to launch.json for backend installation
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Init",
|
|
"type": "shell",
|
|
"command": "make init"
|
|
},
|
|
// make backend
|
|
{
|
|
"label": "Backend",
|
|
"type": "shell",
|
|
"command": "make backend"
|
|
},
|
|
// make frontend
|
|
{
|
|
"label": "Frontend",
|
|
"type": "shell",
|
|
"command": "make frontend"
|
|
},
|
|
// make test
|
|
{
|
|
"label": "Test",
|
|
"type": "shell",
|
|
"command": "make unit_tests"
|
|
},
|
|
// make lint
|
|
{
|
|
"label": "Lint",
|
|
"type": "shell",
|
|
"command": "make lint"
|
|
},
|
|
// make format
|
|
{
|
|
"label": "Format",
|
|
"type": "shell",
|
|
"command": "make format"
|
|
},
|
|
// make install
|
|
{
|
|
"label": "Install",
|
|
"type": "shell",
|
|
"command": "make install_backend && make install_frontend"
|
|
},
|
|
// install backend
|
|
{
|
|
"label": "Install Backend",
|
|
"type": "shell",
|
|
"command": "make install_backend"
|
|
}
|
|
]
|
|
}
|