Docs

Installation

Get Redshift running on your machine in under a minute.

Quick Install (Recommended)

The fastest way to install Redshift is using the install script. This works on macOS, Linux, and Windows (WSL):

curl -fsSL https://redshiftapp.com/install | sh

This will download the latest release and install it to ~/.redshift/bin, then add it to your PATH.

Package Managers

Package manager support (npm, Homebrew) is coming soon. For now, use the install script above or download from GitHub releases.

Build from Source

Clone the GitHub repository and build with Bun:

git clone https://github.com/accolver/redshift.git
cd redshift && bun install
bun build cli/src/main.ts --compile --outfile ~/.local/bin/redshift

Manual Installation

Download the appropriate binary for your platform from the GitHub releases page:

  • redshift-darwin-arm64 - macOS (Apple Silicon)
  • redshift-darwin-x64 - macOS (Intel)
  • redshift-linux-x64 - Linux (x64)
  • redshift-linux-arm64 - Linux (ARM64)

Then make it executable and move to your PATH:

chmod +x redshift-*
mv redshift-* ~/.local/bin/redshift

Verify Installation

Confirm Redshift is installed correctly:

redshift --version
# Output: redshift v0.1.0

System Requirements

macOS 12+ (Monterey or later)
Linux (glibc 2.17+, most modern distributions)
Windows 10+ with WSL2

Next Steps

Now that Redshift is installed, continue to the Quick Start guide to create your first project and store some secrets.