maidn-cli/.vscode/launch.json

23 lines
463 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-test",
"--flux-repo",
"maidn-cicd-test"
],
"cwd": "${workspaceFolder}"
}
]
}