brewman/.vscode/launch.json

26 lines
767 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "ng serve",
"request": "launch",
"type": "node-terminal",
"cwd": "${workspaceFolder}/overlord",
},
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "brewman",
"cwd": "${workspaceFolder}/brewman",
"args": [
],
"jinja": true,
"justMyCode": true,
}
]
}