mirror of https://github.com/citusdata/citus.git
24 lines
787 B
JSON
24 lines
787 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": [
|
|
{
|
|
"type": "cppdbg",
|
|
"name": "Attach Citus (devcontainer)",
|
|
"request": "attach",
|
|
"program": "/home/citus/.pgenv/pgsql/bin/postgres",
|
|
"processId": "${command:pickProcess}",
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
},
|
|
]
|
|
}
|