Skip to content

Commit

Permalink
revert local changes to launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
nithyatsu committed Jan 7, 2025
1 parent 22f4525 commit ed3c9d7
Showing 1 changed file with 88 additions and 9 deletions.
97 changes: 88 additions & 9 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
// 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": [
{
"name": "Debug rad CLI",
"type": "go",
"request": "launch",
"mode": "auto",
"preLaunchTask": "Build Radius (all)",
"preLaunchTask": "Build Radius (all)",
"program": "${workspaceFolder}/cmd/rad/main.go",
"cwd": "${workspaceFolder}",
"args": [
"resource-type", "create", "coolResources", "-f", "/Users/nithya/radius/radius/pkg/cli/cmd/resourceprovider/create/testdata/valid.yaml",
//"resource-provider", "create", "-f", "/Users/nithya/radius/radius/pkg/cli/cmd/resourceprovider/create/testdata/valid.yaml"
//"workspace","create","kubernetes","-w","ws3","-g","rg2","--force","-e","env1"
]
"args": []
},
{
"name": "Debug rad CLI (prompt for args)",
Expand All @@ -24,14 +23,94 @@
"program": "${workspaceFolder}/cmd/rad",
"args": "${input:cliArgs}",
"console": "integratedTerminal"
},
{
"name": "Launch Applications RP",
"type": "go",
"request": "launch",
"mode": "auto",
"preLaunchTask": "Build Radius (all)",
"program": "${workspaceFolder}/cmd/applications-rp/main.go",
},
{
"name": "Launch Dynamic RP",
"type": "go",
"request": "launch",
"mode": "auto",
"preLaunchTask": "Build Radius (all)",
"program": "${workspaceFolder}/cmd/dynamic-rp/main.go",
},
{
"name": "Launch UCP",
"type": "go",
"request": "launch",
"mode": "auto",
"preLaunchTask": "Build Radius (all)",
"program": "${workspaceFolder}/cmd/ucpd/main.go",
},
{
"name": "Launch Controller",
"type": "go",
"request": "launch",
"mode": "auto",
"preLaunchTask": "Build Radius (all)",
"program": "${workspaceFolder}/cmd/controller/main.go",
"args": [
"--cert-dir",
""
],
},
{
"name": "Launch Deployment Engine",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build Deployment Engine",
"program": "${workspaceFolder}/../deployment-engine/src/DeploymentEngine/bin/Debug/net6.0/arm-de.dll",
"args": [],
"cwd": "${workspaceFolder}/../deployment-engine/src/DeploymentEngine",
"stopAtEntry": false,
"env": {
"ASPNETCORE_URLS": "http://localhost:5017",
"ASPNETCORE_ENVIRONMENT": "Development",
"KUBERNETESBICEPEXTENSIBILITYURL": "http://localhost:5017/api",
"RADIUSBACKENDURI": "http://localhost:9000"
}
},
{
"name": "Debug Bicep generator integration tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/hack/bicep-types-radius/src/autorest.bicep/node_modules/.bin/jest",
"--runInBand",
"--no-cache"
],
"cwd": "${workspaceFolder}/hack/bicep-types-radius/src/autorest.bicep/src",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"sourceMaps": true
}
],
"compounds": [
{
"name": "Launch Control Plane (all)",
"configurations": [
"Launch UCP",
"Launch Applications RP",
"Launch Dynamic RP",
"Launch Controller",
"Launch Deployment Engine"
],
"stopAll": true
}
],
"inputs": [
{
"id": "cliArgs",
"type": "promptString",
"description": "Enter arguments for rad CLI",
"default": ""
"description": "Args for launching Radius cli. Use --cwd to set the working directory.",
"default": "init --full"
}
]
}
}

0 comments on commit ed3c9d7

Please sign in to comment.