mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-23 18:57:09 +08:00
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:
committed by
GitHub
parent
099a057d4f
commit
f2af059c65
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@ -6,6 +6,8 @@
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"module": "uvicorn",
|
||||
"preLaunchTask": "Install Backend",
|
||||
|
||||
"args": [
|
||||
"--factory",
|
||||
"langflow.main:create_app",
|
||||
|
||||
6
.vscode/tasks.json
vendored
6
.vscode/tasks.json
vendored
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user