social-networking-library/.vscode/tasks.json

29 lines
581 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Start SSH Tunnel",
"type": "shell",
"command": "ssh -L 9000:localhost:8000 socialservice-dev",
"isBackground": true,
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "^Connected"
}
}
]
}
]
}