Skip to content

Commit 3db545c

Browse files
committed
docs: add Windows usage instructions to README
1 parent 9ad4737 commit 3db545c

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,26 @@ sudo cp ca.crt /usr/local/share/ca-certificates/proxyclawd.crt
4040
sudo update-ca-certificates
4141
```
4242

43-
**Or without root (simplest):**
43+
**Linux/macOS (no root required):**
4444
```bash
4545
export NODE_EXTRA_CA_CERTS=$(pwd)/ca.crt
4646
```
4747

48-
3. Run Claude Code through the proxy:
48+
3. Run Claude Code through the proxy (in a separate terminal):
4949

50+
**Linux/macOS:**
5051
```bash
5152
HTTPS_PROXY=http://127.0.0.1:8080 NODE_EXTRA_CA_CERTS=$(pwd)/ca.crt claude
5253
```
5354

54-
4. Press Enter to launch the TUI and watch requests in real time.
55+
**Windows (PowerShell):**
56+
```powershell
57+
$env:HTTPS_PROXY = "http://127.0.0.1:8080"
58+
$env:NODE_EXTRA_CA_CERTS = "$pwd\ca.crt"
59+
claude
60+
```
61+
62+
4. Press Enter in the proxy terminal to launch the TUI and watch requests in real time.
5563

5664
## TUI Controls
5765

0 commit comments

Comments
 (0)