Skip to content

🎁 zoe installed as a chocolatey package 🎁 #44

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
![Build](https://github.com/adevinta/zoe/workflows/Build%20test/badge.svg)
[![Chocolatey](https://img.shields.io/chocolatey/v/zoe.svg)](https://chocolatey.org/packages/zoe)

# Zoe: The Kafka CLI for humans

Expand Down
39 changes: 39 additions & 0 deletions docs/install/chocolatey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[![Chocolatey](https://img.shields.io/chocolatey/v/zoe.svg)](https://chocolatey.org/packages/zoe)

# Windows install as a Chocolatey package

## Install Chocolatey

You only need to have a proper [Chocolatey install](https://chocolatey.org/install).

## Java requirements

Java 11 or higher is required in order to install the runtime-less tarball packages. They only ship with the Zoe CLI jar.

If you don't have java installed already, you can use [sdkman](https://sdkman.io/) for an easy install and version management of the JDK. If you don't want to install java you can try one of the platform packages provided in the previous section.

Once java is installed, proceed with the `zoe` install :

```
choco install zoe
````

To upgrade :

```
choco upgrade zoe
```

To uninstall :

```
choco uninstall zoe
```

## Init zoe configuration

```bash
zoe config init
```

You are now ready to use zoe. Go to the [guides section](../guides) to start learning zoe.
1 change: 1 addition & 0 deletions docs/install/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ There are several ways to install zoe depending on your needs and the operation
- [Homebrew](homebrew.md): Zoe can also be installed using Homebrew on MacOs and Linux environments. Installed packages do not contain the JDK though, so the host machine is required to have a JDK 11 or higher.
- [Manual tarball install](tarball.md): If none of the above options are available for you, Zoe provides tarballs ready to be used in all platforms (including Windows). The host machine is required to have a JDK 11 or higher.
- [Docker](docker.md): Zoe can also be used with docker. We provide ready to use images automatically built for each release.
- [Windows with Chocolatey](chocolatey.md): Zoe can also be installed as a [Chocolatey package](https://community.chocolatey.org/packages/zoe). Ready to use package are built for each release.