Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update installation instructions #614

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 28 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,35 @@ Benefits are plurals:
- Cost Optimization for data storage management and scaling.

---
## Install chainhook
## Install Chainhook

### Install from the source
There are a few options when installing Chainhook.

### macOS
Chainhook can be installed on macOS using Homebrew with the following command:
```terminal
brew install chainhook
```

### Linux
Chainhook is also available on the [snap store](https://snapcraft.io/chainhook) for Linux users.
To install, run:
```terminal
sudo snap install chainhook
```

### Windows
Windows users can install via winget:
```
winget install HiroSystems.Chainhook
```

### Download Builds
If you don't like using package managers and want to download our builds directly, they are published to our [release page](https://github.com/hirosystems/chainhook/releases).

### Install from Source

Finally, you can also build our source code directly:

```bash
$ git clone https://github.com/hirosystems/chainhook.git
Expand Down
Loading