git-project-manager/.vscode/launch.json
Ryan McGuire c78c41f567
All checks were successful
Build and Publish / release (push) Successful in 1m10s
Rename project to git-project-manager
2024-12-27 17:42:44 -05:00

29 lines
745 B
JSON

{
"$schema": "https://raw.githubusercontent.com/mfussenegger/dapconfig-schema/master/dapconfig-schema.json",
"version": "0.2.0",
"configurations": [
{
"name": "Load Gitea",
"type": "delve",
"request": "launch",
"program": "${workspaceFolder}",
"args": [
"cache",
"load",
"--remote",
"https://gitea.libretechconsulting.com"
]
},
{
"name": "Generate Docs",
"type": "delve",
"request": "launch",
"program": "${workspaceFolder}",
"args": [
"docs",
"md"
]
}
]
}