Installation
There are several ways to install Juicity, depending on your platform and preference.
Pre-built Binaries
Pre-compiled binaries for various platforms (Linux, Windows, macOS, Android) and architectures (amd64, arm64, etc.) are available on the GitHub Releases page.
Docker
Juicity provides an official Docker image suitable for running the server.
docker pull ghcr.io/juicity/juicity:main
Building from Source
If you prefer to build from source, ensure you have Go 1.21+ installed.
-
Clone the repository:
git clone https://github.com/juicity/juicity.git cd juicity -
Build binaries: Use the
Makefileto build both client and server.make allOr build individually:
make juicity-server make juicity-clientThe binaries will be generated in the current directory.