You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,12 @@ pnpm install
28
28
# Copy environment config
29
29
cp .env.example .env
30
30
31
-
# phrocs is auto-installed on first `pnpm dev`
32
31
```
33
32
34
33
### Running in Development
35
34
35
+
By default, `pnpm dev` uses [mprocs](https://github.com/pvolok/mprocs) to run the agent and code app in parallel.
36
+
36
37
```bash
37
38
# Run both agent (watch mode) and code app in parallel
38
39
pnpm dev
@@ -42,6 +43,20 @@ pnpm dev:agent # Run agent in watch mode
42
43
pnpm dev:code # Run code app
43
44
```
44
45
46
+
### phrocs (alpha)
47
+
48
+
phrocs is our custom process runner built as a replacement for mprocs. It's currently in alpha and can be used as an alternative dev runner. phrocs does not auto-update — you must manually run the update command to pull the latest version.
49
+
50
+
```bash
51
+
# Run dev with phrocs (auto-installs on first run)
52
+
pnpm dev:ph
53
+
54
+
# Manually update phrocs to the latest version
55
+
pnpm update:phrocs
56
+
```
57
+
58
+
phrocs reads the same `mprocs.yaml` config file. The binary is downloaded to `bin/phrocs` and is git-ignored.
59
+
45
60
> **Want to connect to a local PostHog instance?** See [docs/LOCAL-DEVELOPMENT.md](./docs/LOCAL-DEVELOPMENT.md) for OAuth setup and connecting to localhost:8010.
0 commit comments