Coderound / proj /.vscode /launch.json
cloud450's picture
Upload 42 files
ab13a8a verified
raw
history blame contribute delete
868 Bytes
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Backend (FastAPI)",
"type": "python",
"request": "launch",
"module": "uvicorn",
"cwd": "${workspaceFolder}/backend",
"args": [
"app.main:app",
"--reload",
"--port",
"8000"
],
"jinja": true,
"justMyCode": true
},
{
"name": "Debug Frontend (Next.js)",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/frontend"
}
],
"compounds": [
{
"name": "Debug All",
"configurations": ["Debug Backend (FastAPI)", "Debug Frontend (Next.js)"]
}
]
}