This software hasn't been maintained since 2019. Amolith is working on a spiritual successor (written in Go rather than PHP) at ~amolith/willow.
Web-based utility that tracks software updates in one convenient place.
Hosted version available at updatewatch.lelux.fi.
composer install
cp .env.dist .env
yarn install
Make MariaDB database as described here and add the password to .env
.
CREATE USER 'updatewatch_user'@'localhost' IDENTIFIED BY 'password';
GRANT ALL ON update_watch.* TO 'updatewatch_user'@'localhost' IDENTIFIED BY 'password';
sudo mysql -u root < db.sql