-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathmprocs.yaml
More file actions
76 lines (64 loc) · 1.93 KB
/
Copy pathmprocs.yaml
File metadata and controls
76 lines (64 loc) · 1.93 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
procs:
code:
shell: 'node scripts/wait-for-electron-exit.mjs && node scripts/pnpm-run.mjs --filter code run start'
env:
DEBUG: "false"
depends_on:
- agent
- git
- enricher
- platform
groups:
layer: Application
agent:
shell: 'node scripts/pnpm-run.mjs --filter agent run dev'
groups:
layer: Packages
git:
shell: 'node scripts/pnpm-run.mjs --filter @posthog/git run dev'
groups:
layer: Packages
platform:
shell: 'node scripts/pnpm-run.mjs --filter @posthog/platform run dev'
groups:
layer: Packages
enricher:
shell: 'node scripts/pnpm-run.mjs --filter @posthog/enricher run dev'
groups:
layer: Packages
storybook:
shell: 'node scripts/pnpm-run.mjs --filter code run storybook'
autostart: false
groups:
layer: Tools
mobile-ios:
shell: 'node scripts/pnpm-run.mjs --filter @posthog/mobile run ios'
autostart: false
groups:
layer: Application
chromium-log:
shell: 'tail -F ~/.posthog-code/logs-dev/chromium.log'
groups:
layer: Tools
web:
shell: 'node scripts/pnpm-run.mjs --filter @posthog/web run dev'
autostart: false
groups:
layer: Application
web-playwright:
shell: 'node scripts/pnpm-run.mjs --filter @posthog/web run test:e2e'
autostart: false
groups:
layer: Tools
# The desktop e2e fixture launches the PACKAGED app from out/, so package
# first (matches CI) or it fails with "No packaged app found". Slow on first
# run; re-run test:e2e directly if the app is already packaged and unchanged.
desktop-playwright:
shell: 'node scripts/pnpm-run.mjs --filter code run package && node scripts/pnpm-run.mjs --filter code run test:e2e'
autostart: false
groups:
layer: Tools
# Grouping dimension the sidebar starts grouped by (press `g` to cycle/disable).
default_group: layer
group_order:
layer: [Application, Packages, Tools]