Files
Entkube/.vscode/launch.json
2026-05-13 14:01:32 +02:00

94 lines
2.7 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Web (BFF)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-web",
"program": "${workspaceFolder}/src/EntKube.Web/bin/Debug/net10.0/EntKube.Web.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Web",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5000"
}
},
{
"name": "Clusters API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-clusters",
"program": "${workspaceFolder}/src/EntKube.Clusters/bin/Debug/net10.0/EntKube.Clusters.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Clusters",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5010"
}
},
{
"name": "Identity API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-identity",
"program": "${workspaceFolder}/src/EntKube.Identity/bin/Debug/net10.0/EntKube.Identity.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Identity",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5030"
}
},
{
"name": "Provisioning API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-provisioning",
"program": "${workspaceFolder}/src/EntKube.Provisioning/bin/Debug/net10.0/EntKube.Provisioning.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Provisioning",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5020"
}
},
{
"name": "Secrets API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-secrets",
"program": "${workspaceFolder}/src/EntKube.Secrets/bin/Debug/net10.0/EntKube.Secrets.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Secrets",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5040"
}
}
],
"compounds": [
{
"name": "All Services",
"configurations": [
"Web (BFF)",
"Clusters API",
"Identity API",
"Provisioning API",
"Secrets API"
],
"preLaunchTask": "build-all",
"stopAll": true
}
]
}