langflow/.vscode/tasks.json
Gabriel Luiz Freitas Almeida f2af059c65
chore: Add backend installation tasks to VSCode configuration (#4335)
* Add separate task for installing backend in VSCode tasks configuration

* Add preLaunchTask to launch.json for backend installation
2024-10-31 14:51:01 +00:00

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"
}
]
}