Vavooto Repository Zip Site

Execute the built-in test suite to confirm everything works:

cd $VAVOOTO_HOME/tests
vavooto-cli run --all

Expected output: All 142 tests passed.

No. The Docker image (vavooto/server:latest) is a pre-contained runtime environment that includes the repository files. The ZIP is the raw source and binary distribution. vavooto repository zip

Cause: The repository index wasn't built.
Fix: Force a reindex: vavooto-cli index --rebuild --parallel 4. Execute the built-in test suite to confirm everything

Manually downloading the ZIP every month is tedious. Here is a cron script that automates safe updates: Expected output: All 142 tests passed

#!/bin/bash
# vavooto-updater.sh
set -e

LATEST_URL=$(curl -s https://vavooto.org/api/latest-zip-url) EXPECTED_SHA=$(curl -s https://vavooto.org/api/latest-zip-sha)

wget -O /tmp/vavooto-new.zip "$LATEST_URL" echo "$EXPECTED_SHA /tmp/vavooto-new.zip" | sha256sum -c