12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Docker: Python - Flask",
- "type": "docker",
- "request": "launch",
- "preLaunchTask": "docker-run: debug",
- "python": {
- "pathMappings": [
- {
- "localRoot": "${workspaceFolder}",
- "remoteRoot": "/app"
- }
- ],
- "projectType": "flask"
- }
- },
- {
- "name": "Debug FastAPI Project backend: Python Debugger",
- "type": "debugpy",
- "request": "launch",
- "module": "uvicorn",
- "args": [
- "app.main:app",
- "--reload"
- ],
- "cwd": "${workspaceFolder}/backend",
- "jinja": true,
- "envFile": "${workspaceFolder}/.env",
- },
- {
- "type": "chrome",
- "request": "launch",
- "name": "Debug Frontend: Launch Chrome against http://localhost:5173",
- "url": "http://localhost:5173",
- "webRoot": "${workspaceFolder}/frontend"
- },
- ]
- }
|