Skip to content

Commit 7c2e651

Browse files
committed
fix one-time setup section in README
1 parent d8822ee commit 7c2e651

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,22 @@ Perfect for attribution tests, analytics pipelines, and E2E growth flows.
2828

2929
### 🚀 Quick Start
3030

31-
1) One‑time (Linux only) — share CA between root and your user
31+
1) One‑time — install mkcert local CA (all platforms)
32+
33+
• macOS: `brew install mkcert nss && sudo mkcert -install`
34+
35+
• Windows: `choco install mkcert` then `mkcert -install` (admin PowerShell)
36+
37+
• Linux (also share CA between root and your user so sudo uses the same CA):
3238

3339
```bash
34-
sudo mkcert -install # system trust store
35-
mkcert -install # your user’s Firefox/Chromium trust
40+
sudo mkcert -install # install to system trust store
41+
mkcert -install # install to your user’s Firefox/Chromium trust
3642
sudo mkdir -p /etc/mkcert
3743
sudo cp -a "$(mkcert -CAROOT)/." /etc/mkcert/
3844
sudo chmod 755 /etc/mkcert && sudo chmod 644 /etc/mkcert/*
3945
```
4046

41-
• macOS: `brew install mkcert nss && sudo mkcert -install`
42-
• Windows: `choco install mkcert` then `mkcert -install` (admin PowerShell)
43-
4447
2) Run a referrer → target flow
4548

4649
```bash

0 commit comments

Comments
 (0)