Downloads
Every version tag publishes tested, version-stamped artifacts. Start at GitHub Releases.
CLI binaries
No installation, no dependencies — download, run, done.
| Asset | Platform |
|---|---|
envious-linux-amd64 | Linux x86_64 |
envious-linux-arm64 | Linux ARM64 (Raspberry Pi, Graviton) |
envious-darwin-amd64 | macOS Intel |
envious-darwin-arm64 | macOS Apple Silicon |
envious-windows-amd64.exe | Windows x86_64 |
checksums.txt | SHA-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"