forked from PostHog/posthog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtach.toml
More file actions
46 lines (37 loc) · 897 Bytes
/
tach.toml
File metadata and controls
46 lines (37 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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.links",
"products.revenue_analytics",
"products.user_interviews",
]
[[modules]]
path = "products.early_access_features"
depends_on = ["posthog"]
[[modules]]
path = "products.links"
depends_on = ["posthog"]
[[modules]]
path = "products.revenue_analytics"
depends_on = ["posthog"]