This page explains how to get the software you need to use a Linux or macOS machine for local development.
Before you begin contributing you must have:
- A GitHub account
Java
17 or newerGit
Docker
- Install brew.
- Install brew cask:
brew cask
- Install Eclipse Temurin 17 via Homebrew cask:
brew tap homebrew/cask-versions
brew install temurin17
- Verify Installation
java -version
Note : In case OpenJDK 17 is not set as your default Java, you can consider to include it in your $PATH
after installation
export PATH="$(/usr/libexec/java_home -v 17)/bin:$PATH"
export JAVA_HOME="$(/usr/libexec/java_home -v 17)"
Consider allocating not less than 4GB of memory for your docker.
Otherwise, some apps within a stack (e.g. kafka-ui.yaml
) might crash.
In the next section, you'll learn how to Build and Run kafka-ui.