maidn-cli/.vscode/launch.json
2025-08-21 23:19:27 +02:00

21 lines
408 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run and Debug CICD Tool",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"repo",
"init",
"--org",
"Pingu-Studio",
"--manifests-repo",
"cicd-deployment-manifests"
],
"cwd": "${workspaceFolder}"
}
]
}