Files
GenerationsHeritage/.vscode/launch.json
2025-04-29 17:10:06 +02:00

21 lines
699 B
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 db adapter",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/apps/db-adapter/main.go",
"env": {
"HTTP_PORT": ":5237",
"MEMGRAPH_URI": "bolt://127.0.0.1:7687",
"MEMGRAPH_USER": "memgraph",
"MEMGRAPH_PASSWORD": "memgraph"
}
}
]
}