0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 21:49:51 +01:00
posthog/.vscode/launch.json

87 lines
2.9 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": "Celery",
"type": "python",
"request": "launch",
"module": "celery",
"console": "integratedTerminal",
"python": "${workspaceFolder}/env/bin/python",
"cwd": "${workspaceFolder}",
"args": [
"-A",
"posthog",
"worker",
"-B",
"--scheduler",
"redbeat.RedBeatScheduler",
"--without-heartbeat",
"--without-gossip",
"--without-mingle"
],
"env": {
"PYTHONUNBUFFERED": "1",
"DEBUG": "1",
"CLICKHOUSE_SECURE": "False",
"KAFKA_URL": "kafka://localhost",
"DATABASE_URL": "postgres://posthog:posthog@localhost:5432/posthog",
"WORKER_CONCURRENCY": "2",
"SKIP_SERVICE_VERSION_REQUIREMENTS": "1"
}
},
{
"command": "npm run start:dev",
"name": "Plugin Server",
"request": "launch",
"type": "node-terminal",
"cwd": "${workspaceFolder}/plugin-server",
"env": {
"CLICKHOUSE_SECURE": "False",
"DATABASE_URL": "postgres://posthog:posthog@localhost:5432/posthog",
"KAFKA_HOSTS": "localhost:9092",
"WORKER_CONCURRENCY": "2",
"OBJECT_STORAGE_ENABLED": "True"
}
},
{
"name": "Frontend",
"command": "npm start",
"request": "launch",
"type": "node-terminal",
"cwd": "${workspaceFolder}"
},
{
"name": "Backend",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/manage.py",
"args": ["runserver"],
"django": true,
"env": {
"PYTHONUNBUFFERED": "1",
"DJANGO_SETTINGS_MODULE": "posthog.settings",
"DEBUG": "1",
"CLICKHOUSE_SECURE": "False",
"KAFKA_URL": "kafka://localhost",
"DATABASE_URL": "postgres://posthog:posthog@localhost:5432/posthog",
"SKIP_SERVICE_VERSION_REQUIREMENTS": "1",
"PRINT_SQL": "1"
},
"console": "integratedTerminal",
"python": "${workspaceFolder}/env/bin/python",
"cwd": "${workspaceFolder}"
}
],
"compounds": [
{
"name": "PostHog",
"configurations": ["Backend", "Celery", "Frontend", "Plugin Server"],
"stopAll": true
}
]
}