Prerequisites#
Minimal requirements to get started with FlowKit.
Docker (Recommended)#
For the quickest setup, you only need Docker:
Docker Desktop for Mac/Windows
Docker Engine for Linux
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.
Install Homebrew if you haven’t already. You can find instructions on the Homebrew website.
Open a Terminal and run the following commands:
brew update brew install go
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:
Download the Go installer from the official website: Go Downloads.
Run the installer executable and follow the on-screen instructions.
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
Download the Git installer from the official website: Git Downloads.
Run the installer executable and follow the on-screen instructions.
Once the installation is complete, open a new Command Prompt and verify the installation by running the command:
git --version