Prerequisites#

Minimal requirements to get started with FlowKit.

For Development#

If you want to develop or customize FlowKit, you’ll need:

Go Language

FlowKit requires Go version 1.21 or higher.

Follow these steps to install Go on macOS.

  1. Install Homebrew if you haven’t already. You can find instructions on the Homebrew website.

  2. Open a Terminal and run the following commands:

brew update
brew install go
  1. Verify the installation by running:

go version

Follow these steps to install Go on Ubuntu:

sudo apt update
sudo apt install snapd
sudo snap install go --classic

Verify the installation by running:

go version

Follow these steps to install Go on Windows:

  1. Download the Go installer from the official website: Go Downloads.

  2. Run the installer executable and follow the on-screen instructions.

  3. Once the installation is complete, open a new Command Prompt and verify the installation by running the command:

go version

Git (Optional)

Only needed if cloning the repository:

brew install git
sudo apt update
sudo apt install git
  1. Download the Git installer from the official website: Git Downloads.

  2. Run the installer executable and follow the on-screen instructions.

  3. Once the installation is complete, open a new Command Prompt and verify the installation by running the command:

git --version

Go to Getting started