Downloads

Every version tag publishes tested, version-stamped artifacts. Start at GitHub Releases.

CLI binaries

No installation, no dependencies — download, run, done.

AssetPlatform
envious-linux-amd64Linux x86_64
envious-linux-arm64Linux ARM64 (Raspberry Pi, Graviton)
envious-darwin-amd64macOS Intel
envious-darwin-arm64macOS Apple Silicon
envious-windows-amd64.exeWindows x86_64
checksums.txtSHA-256 for every asset
# Linux
curl -L -o envious \
  https://github.com/marcuwynu23/envious/releases/latest/download/envious-linux-amd64
chmod +x envious
# macOS (Apple Silicon; swap in envious-darwin-amd64 on Intel)
curl -L -o envious \
  https://github.com/marcuwynu23/envious/releases/latest/download/envious-darwin-arm64
chmod +x envious
# Windows (PowerShell)
Invoke-WebRequest `
  -Uri https://github.com/marcuwynu23/envious/releases/latest/download/envious-windows-amd64.exe `
  -OutFile envious.exe

Server Docker image

Multi-arch (amd64 + arm64) image with the release tag baked in (visible via -version, /api/version, and the dashboard).

docker pull ghcr.io/marcuwynu23/envious-web:latest
docker run -p 8080:8080 \
  -e ENCRYPTION_KEY="..." \
  -v envious-data:/data \
  -e DATABASE_PATH=/data/envious.db \
  ghcr.io/marcuwynu23/envious-web:latest

Verify

./envious --help
./envious version   # must show the release tag, not "dev"