swag-shop/.vscode/launch.json

58 lines
1.0 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Flask Shop",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"args": [],
"cwd": "${workspaceFolder}/backend",
"env": {
"FLASK_APP": "main.py",
"FLASK_ENV": "development"
},
"console": "internalConsole",
"autoReload": {"enable": true},
"justMyCode": true
},
{
"name": "Frontend: Dev",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/frontend",
"runtimeArgs": [
"run",
"dev"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
}
,
{
"name": "Frontend: Prod",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/frontend",
"runtimeArgs": [
"run",
"preview"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
}
],
"compounds": [
{
"name": "Full Stack Debug",
"configurations": [
"Flask Shop",
"Frontend: Dev"
]
}
]
}