Skip to content

Commit 37111ae

Browse files
gouravkrosxclaude
andauthored
docs(macos-install): restore Homebrew install as option 2 (#868)
* docs(macos-install): restore Homebrew install as option 2 Revert the Homebrew comment-outs from #867 now that the keploy/tap formula is expected to work. Restores `brew install keploy/tap/keploy` as a second documented install path, alongside the one-click curl installer which remains the recommended primary option. - Re-enable the "Install with Homebrew" HowTo schema step (now step 2, curl one-click stays as step 1 / recommended). - Re-add the visible "## Install with Homebrew" section. - Restore the two-option intro list; keep Manual Setup as the eBPF fallback below. - Put `homebrew` / `brew install keploy` back in frontmatter keywords and the page description. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com> * docs(macos-install): drop em-dash in intro list to satisfy Vale Vale's Google.EmDash rule flags ` — ` (space-em-dash-space) in the visible markdown prose. The HowTo JSX block is BlockIgnored in .vale.ini, but the intro list outside it isn't. Reword the recommended marker as a bold prefix instead of an em-dash trailer. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com> --------- Signed-off-by: gouravkrosx <gouravgreatkr@gmail.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent cbd38c0 commit 37111ae

1 file changed

Lines changed: 12 additions & 11 deletions

File tree

versioned_docs/version-4.0.0/server/macos/installation.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
id: installation
33
title: macOS Installation
44
sidebar_label: macOS
5-
description: "Install Keploy on macOS with the one-click curl installer. Docker Desktop and Colima setups are also supported for eBPF testing."
5+
description: "Install Keploy on macOS with the one-click curl installer or Homebrew. Docker Desktop and Colima setups are also supported for eBPF testing."
66
tags:
77
- hello-world
88
- macos
@@ -20,35 +20,40 @@ keywords:
2020
- guide
2121
- api
2222
- docker
23+
- homebrew
24+
- brew install keploy
2325
---
2426

2527
import HowTo from '@site/src/components/HowTo';
2628

2729
<HowTo
2830
name="Install Keploy on macOS"
29-
description="Install the Keploy CLI on macOS using the one-click curl installer."
31+
description="Install the Keploy CLI on macOS using the one-click curl installer or Homebrew."
3032
totalTime="PT5M"
3133
estimatedCost={{currency: "USD", value: "0"}}
32-
tools={["bash", "curl"]}
34+
tools={["bash", "curl", "Homebrew (optional)"]}
3335
supplies={["A macOS machine"]}
3436
visible={false}
3537
steps={[
3638
{
37-
name: "One-click install",
39+
name: "One-click install (recommended)",
3840
text: "Run: curl --silent -O -L https://keploy.io/install.sh && source install.sh",
3941
url: "#one-click-install-keploy",
4042
},
41-
/* Homebrew install temporarily disabled — the keploy/tap formula has known issues being resolved. Re-enable this step (and the "Install with Homebrew" section below) once the tap is fixed.
4243
{
4344
name: "Install with Homebrew",
4445
text: "Run: brew install keploy/tap/keploy",
4546
url: "#install-with-homebrew",
4647
},
47-
*/
4848
]}
4949
/>
5050

51-
The recommended way to install Keploy on macOS is the **one-click curl installer**. For users who need eBPF support, a [manual setup with Docker Desktop or Colima](#manual-setup) is also available.
51+
There are two ways to install Keploy on macOS:
52+
53+
1. **Recommended:** [One-click install](#one-click-install-keploy).
54+
2. [Install with Homebrew](#install-with-homebrew).
55+
56+
For users who need eBPF support, a [manual setup with Docker Desktop or Colima](#manual-setup) is also available.
5257

5358
## One-click install Keploy
5459

@@ -58,11 +63,8 @@ Run the following command in your terminal:
5863
curl --silent -O -L https://keploy.io/install.sh && source install.sh
5964
```
6065

61-
<!--
6266
## Install with Homebrew
6367

64-
_Homebrew installation is temporarily disabled while we resolve known issues with the `keploy/tap` formula. Once fixed, this section will be restored._
65-
6668
If you prefer [Homebrew](https://brew.sh/), install Keploy from the official Keploy tap:
6769

6870
```shell
@@ -74,7 +76,6 @@ Verify the install:
7476
```shell
7577
keploy --version
7678
```
77-
-->
7879

7980
## Manual Setup
8081

0 commit comments

Comments
 (0)