oauth2-proxy/.vscode/launch.json

53 lines
1.5 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Config conversion",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"--convert-config-to-alpha",
"--config",
"contrib/local-environment/oauth2-proxy.cfg"
]
},
{
"name": "OAuth2 Proxy for Dex",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"--config",
"contrib/local-environment/oauth2-proxy.cfg"
]
},
{
"name": "OAuth2 Proxy for Keycloak",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"--config",
"contrib/local-environment/oauth2-proxy-keycloak.cfg"
]
},
{
"name": "OAuth2 Proxy with Alpha Config",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"--config",
"contrib/local-environment/oauth2-proxy-alpha-config.cfg",
"--alpha-config",
"contrib/local-environment/oauth2-proxy-alpha-config.yaml"
]
}
]
}