swag-shop/.vscode/launch.json

60 lines
1.1 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Backend",
"type": "debugpy",
"request": "launch",
"cwd": "${workspaceFolder}/backend",
"module": "fastapi",
"args": ["dev", "${cwd}/backend/app/main.py"],
"console": "internalConsole",
"serverReadyAction":{
"action": "openExternally",
"killOnServerStop": false,
"pattern": "Application startup complete.",
"uriFormat": "http://localhost:8000/docs"
}
},
{
"name": "Frontend: Dev",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/frontend",
"runtimeArgs": [
"run",
"dev"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"console": "internalConsole"
}
,
{
"name": "Frontend: Prod",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/frontend",
"runtimeArgs": [
"run",
"preview"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"console": "internalConsole"
}
],
"compounds": [
{
"name": "Full Stack Debug",
"configurations": [
"Backend",
"Frontend: Dev"
]
}
]
}