dendrite/.vscode/launch.json

33 lines
1.1 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": "Launch Package Monolith",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}\\cmd\\dendrite-monolith-server",
"args": [
"-config",
"${workspaceFolder}\\build\\docker\\config\\dendrite-config-monolith-sqlite.yaml",
//Uncomment below to expose internal api's
// "--api",
// "true"
]},
{
"name": "Launch Package Polylith",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/dendrite-polylith-multi",
"args": [
"--config",
"${workspaceFolder}\\bin\\dendrite.yaml",
"clientapi",
]
}
]
}