Upgrades and debugging

This commit is contained in:
2024-12-19 13:59:42 -05:00
parent 03fcbe41ae
commit 19c9fa0f76
3 changed files with 92 additions and 19 deletions

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

@@ -0,0 +1,18 @@
{
"$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"
]
}
]
}