Files
posthog/tach.toml
Marce Coll 12791fc0cf feat: Live Debugging (#40710)
## Problem

This is the first in a line of 4 stacked PRs introducing the Live Debugger feature.

On this first PR the product is created and integrated with the PostHog codebase.

## Changes

Create a new product and integrated in the codebase. For now it's mostly empty.

## How did you test this code?

N/A
2025-10-31 10:23:54 +01:00

83 lines
1.6 KiB
TOML

interfaces = []
exclude = [".*__pycache__", ".*egg-info", "docs", "tests"]
source_roots = ["."]
[[modules]]
path = "<root>"
depends_on = ["posthog"]
[[modules]]
path = "ee"
depends_on = ["common.hogvm.python", "posthog"]
[[modules]]
path = "common.hogql_parser"
depends_on = []
[[modules]]
path = "common.hogvm.python"
depends_on = ["posthog"]
[[modules]]
path = "posthog"
depends_on = [
"<root>",
"ee",
"common.hogql_parser",
"common.hogvm.python",
# NOTE: Add new product dependencies here and in settings/web.py PRODUCTS_APPS
"products.early_access_features",
"products.tasks",
"products.links",
"products.revenue_analytics",
"products.user_interviews",
"products.llm_analytics",
"products.marketing_analytics",
"products.endpoints",
"products.error_tracking",
"products.notebooks",
"products.live_debugger",
"products.desktop_recordings",
]
[[modules]]
path = "products.early_access_features"
depends_on = ["posthog"]
[[modules]]
path = "products.tasks"
depends_on = ["posthog"]
[[modules]]
path = "products.links"
depends_on = ["posthog"]
[[modules]]
path = "products.revenue_analytics"
depends_on = ["posthog"]
[[modules]]
path = "products.endpoints"
depends_on = ["posthog"]
[[modules]]
path = "products.marketing_analytics"
depends_on = ["posthog"]
[[modules]]
path = "products.error_tracking"
depends_on = ["posthog"]
[[modules]]
path = "products.notebooks"
depends_on = ["posthog"]
[[modules]]
path = "products.desktop_recordings"
depends_on = ["posthog"]
[[modules]]
path = "products.live_debugger"
depends_on = ["posthog"]