mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 09:16:49 +01:00
bbb329dce3
* wip historical exports fixes * much cleaner solution * remove logging * update postgres tests * prettier * fix import * update postgres tests, fix elements * fix postgres tests for good? * fix ch tests * fix clickhouse tests * fix elements test * remove debug logging
52 lines
1.9 KiB
JSON
52 lines
1.9 KiB
JSON
{
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug (Postgres)",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"protocol": "inspector",
|
|
"restart": true,
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/@posthog/piscina/**"],
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ts-node-dev",
|
|
"runtimeArgs": ["--inspect", "--exit-child"],
|
|
"args": ["src/index.ts"],
|
|
"env": {
|
|
"NODE_ENV": "dev",
|
|
"BASE_DIR": "${workspaceFolder}/../posthog"
|
|
}
|
|
},
|
|
{
|
|
"name": "Debug (ClickHouse)",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"protocol": "inspector",
|
|
"restart": true,
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/@posthog/piscina/**"],
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ts-node-dev",
|
|
"runtimeArgs": ["--inspect", "--exit-child"],
|
|
"args": ["src/index.ts"],
|
|
"env": {
|
|
"NODE_ENV": "dev",
|
|
"BASE_DIR": "${workspaceFolder}/../posthog",
|
|
"KAFKA_ENABLED": "1",
|
|
"KAFKA_HOSTS": "kafka:9092"
|
|
}
|
|
},
|
|
{
|
|
"type": "node",
|
|
"name": "vscode-jest-tests",
|
|
"request": "launch",
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"disableOptimisticBPs": true,
|
|
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
|
"cwd": "${workspaceFolder}",
|
|
"args": ["--runInBand", "--forceExit", "--watchAll=false"]
|
|
}
|
|
]
|
|
}
|