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
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-10-31 11:51:01 -03:00 committed by GitHub
commit f2af059c65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

2
.vscode/launch.json vendored
View file

@ -6,6 +6,8 @@
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"preLaunchTask": "Install Backend",
"args": [
"--factory",
"langflow.main:create_app",

6
.vscode/tasks.json vendored
View file

@ -43,6 +43,12 @@
"label": "Install",
"type": "shell",
"command": "make install_backend && make install_frontend"
},
// install backend
{
"label": "Install Backend",
"type": "shell",
"command": "make install_backend"
}
]
}