cvc/src/loreal.com/dit/cmd/coupon-service/.vscode/launch.json

45 lines
1.2 KiB
JSON

{
// 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": "test coupon@mac",
"type": "go",
"request": "launch",
"mode": "test",
"program": "${workspaceFolder}/coupon",
},
{
"name": "Debug Coupon-service@MAC",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/main.go",
"args": [
"-apitest=1"
]
},
{
"name": "run Coupon-service@MAC",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/main.go"
},
{
"name": "Debug CCS",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}\\main.go",
"args": [
"-apitest=1"
]
}
]
}