Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 860 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 860 Bytes

UpdateWatch

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.

Screenshots

Screenshot of UpdateWatch frontpage

Running

composer install
cp .env.dist .env
yarn install

Database setup

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