Skip to content

ystepanoff/updaemon

Repository files navigation

updaemon: monitoring web sources and getting notified

Installation

$ git clone https://github.com/ystepanoff/updaemon
$ cd updaemon
$ mv updaemon.example.conf updaemon.conf
$ mv docker-compose.example.yaml docker-compose.yaml

Populate updaemon.conf and docker-compose.yaml with the relevant configuration options. Make sure the MySQL passwords in both files are the same.

$ docker compose build
$ docker compose up -d

Configure reverse proxy (below is an example Nginx configuration):

server {
    listen 8080;
    listen [::]:8080;

    server_name your-server;

    location / {
        proxy_pass http://127.0.0.1:5000;
        include proxy_params;
    }
}

About

Monitoring updates of various web sources

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published