build: 🔥 properly set up debugging env etc.

This commit is contained in:
xaseiresh 2023-04-04 00:32:17 +02:00
parent 607159334b
commit 38d0627394
5 changed files with 69 additions and 4 deletions

22
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "rdbg",
"name": "Debug current file with rdbg",
"request": "launch",
"script": "bin/console",
"cwd": "${workspaceFolder}",
"useBundler": true,
"args": []
},
{
"type": "rdbg",
"name": "Attach with rdbg",
"request": "attach"
}
]
}