Skip to content
Installation

Installation

Follow these steps to install SpecGate on your system.

Prerequisites

  • Go 1.25 or later must be installed. Download it at go.dev.
  • make is required to build the binary.

Note: SpecGate currently requires building from source. Pre-built binaries are planned for a future release.

Step 1: Clone the repository

git clone https://github.com/itsdeannat/specgate.git
cd specgate

Step 2: Build the binary

make build

This command compiles the project and produces the specgate executable.

Step 3: Verify installation

Run this command:

./specgate -v

You should see output similar to:

specgate version 0.1.0

Step 4: Move the binary to your PATH (recommended)

mv specgate /usr/local/bin/ 

This allows you to run specgate from any directory.

Depending on your system, this step may require sudo.

If you prefer not to modify your PATH, you can run the binary directly from the project directory:

./specgate -v