| { |
| "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)"] |
| } |
| ] |
| } |
|
|