feat: add launch configuration for GitButler Dev in VSCode

This commit is contained in:
Kiril Videlov 2023-12-04 16:43:26 +01:00 committed by Kiril Videlov
parent 72cfddfc1d
commit 444bce1e74
2 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -6,6 +6,7 @@
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
!.vscode/launch.json
.idea
.DS_Store

16
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
// 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": "lldb",
"request": "launch",
"name": "GitButler Dev",
"program": "${workspaceFolder}/target/debug/GitButler Dev",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}