38 lines
778 B
JSON
38 lines
778 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Gardomatic: API",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceFolder}/cmd/api",
|
|
"envFile": "${workspaceFolder}/.env",
|
|
"env": {
|
|
"GARDOMATIC_API_HOST": "127.0.0.1"
|
|
}
|
|
},
|
|
{
|
|
"name": "Gardomatic: Web",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "debug",
|
|
"program": "${workspaceFolder}/cmd/web",
|
|
"envFile": "${workspaceFolder}/.env",
|
|
"env": {
|
|
"GARDOMATIC_WEB_HOST": "0.0.0.0"
|
|
}
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Gardomatic: API + Web",
|
|
"configurations": [
|
|
"Gardomatic: API",
|
|
"Gardomatic: Web"
|
|
],
|
|
"stopAll": true
|
|
}
|
|
]
|
|
}
|