Skip to content
Open
Changes from 2 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
13 changes: 11 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
- [kind](https://kind.sigs.k8s.io/docs/user/quick-start/#installation) OR [minikube](https://minikube.sigs.k8s.io/docs/start/)
- [Argo CD CLI](https://argo-cd.readthedocs.io/en/stable/cli_installation/)

## Find the correct binary for your operating system
## Download binary from GitHub releases

Check the [releases](https://github.com/dag-andersen/argocd-diff-preview/releases) and find the correct binary for your operating system.

Expand All @@ -58,6 +58,16 @@
argocd-diff-preview --help
```

## Install binary with [aquaproj/aqua](https://github.com/aquaproj/aqua)
`argocd-diff-preview` also supports installation by aqua. See [documentation](https://aquaproj.github.io/docs/install) for aqua setup instructions.

```bash
aqua init
aqua g -i dag-andersen/argocd-diff-preview
aqua i
argocd-diff-preview --help
```

Comment thread
dag-andersen marked this conversation as resolved.
Outdated
## Usage

You need to pull down the two branches you want to compare. The first branch will be cloned into the `base-branch` folder, and the other branch will be cloned into the `target-branch` folder.
Expand Down Expand Up @@ -120,4 +130,3 @@
```

If base-branch is not specified it will default to `main`.
Comment thread
ponkio-o marked this conversation as resolved.