brewman/.vscode/launch.json

24 lines
720 B
JSON
Raw Permalink Normal View History

2022-07-29 01:58:09 +00:00
{
// 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": [
{
"name": "ng serve",
2023-07-23 02:42:42 +00:00
"type": "chrome",
2022-07-29 01:58:09 +00:00
"request": "launch",
2023-07-23 02:42:42 +00:00
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
2022-07-29 01:58:09 +00:00
},
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "brewman",
2023-07-23 02:42:42 +00:00
"args": [],
2022-07-29 01:58:09 +00:00
"cwd": "${workspaceFolder}/brewman",
2023-07-23 02:42:42 +00:00
"justMyCode": true
2022-07-29 01:58:09 +00:00
}
]
}