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.
makeis 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 specgateStep 2: Build the binary
make buildThis command compiles the project and produces the specgate executable.
Step 3: Verify installation
Run this command:
./specgate -vYou should see output similar to:
specgate version 0.1.0Step 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