feat: Added compound launch config for vscode (#11501)

This commit is contained in:
Ben White
2022-08-25 17:30:52 +01:00
committed by GitHub
parent b3ed063e7a
commit 48811bfb3b

9
.vscode/launch.json vendored
View File

@@ -55,7 +55,7 @@
"cwd": "${workspaceFolder}"
},
{
"name": "PostHog",
"name": "Backend",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
@@ -75,5 +75,12 @@
"python": "${workspaceFolder}/env/bin/python",
"cwd": "${workspaceFolder}"
}
],
"compounds": [
{
"name": "PostHog",
"configurations": ["Backend", "Celery", "Frontend", "Plugin Server"],
"stopAll": true
}
]
}