Installation
Get Sindr up and running on your system with one of the following methods.
Using the install script
The easiest way to install Sindr is using our install script:
curl -sSL https://raw.githubusercontent.com/your-repo/sindr/main/install.sh | bash
This will download the latest release and install it to your system.
Building from source
If you prefer to build from source or need the latest development version:
git clone https://github.com/your-repo/sindr.git
cd sindr
go build -o sindr cmd/main.go
Make sure you have Go 1.19+ installed on your system.
Package Managers
Homebrew (macOS/Linux)
brew install sindr
Manual Installation
- Download the latest release for your platform from GitHub Releases
- Extract the archive
- Move the
sindr
binary to a directory in yourPATH
(e.g.,/usr/local/bin
)
Verification
After installation, verify it works:
sindr --version
You should see version information printed to the terminal.
Next Steps
Now that Sindr is installed, check out the Getting Started guide to create your first Sindr project.