Browse Source

🔧 Update VS Code debug config (#676)

pull/13907/head
Sebastián Ramírez 1 year ago
committed by GitHub
parent
commit
10f7b23c9c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 9
      .vscode/launch.json

9
.vscode/launch.json

@ -13,19 +13,16 @@
"app.main:app",
"--reload"
],
"cwd": "${workspaceFolder}/src/backend",
"cwd": "${workspaceFolder}/backend",
"jinja": true,
"envFile": "${workspaceFolder}/src/.env",
"env": {
"POSTGRES_SERVER": "localhost"
}
"envFile": "${workspaceFolder}/.env",
},
{
"type": "chrome",
"request": "launch",
"name": "Debug Frontend: Launch Chrome against http://localhost:5173",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/src/new-frontend"
"webRoot": "${workspaceFolder}/frontend"
},
]
}

Loading…
Cancel
Save