changedetection.io/README.md

59 wiersze
2.0 KiB
Markdown
Czysty Zwykły widok Historia

2021-01-27 19:51:55 +00:00
# changedetection.io
2021-01-27 20:58:35 +00:00
## Self-hosted change monitoring of web pages.
2021-01-27 19:51:55 +00:00
2021-01-29 12:26:16 +00:00
_Know when web pages change! Stay ontop of new information!_
2021-01-27 19:51:55 +00:00
2021-01-29 12:26:16 +00:00
2021-01-29 12:28:46 +00:00
#### Example use cases
2021-01-29 12:26:16 +00:00
Know when ...
- Government department updates (changes are often only on their websites)
- Local government news (changes are often only on their websites)
- New software releases
- Festivals with changes
- Realestate listing changes
2021-02-01 10:42:51 +00:00
**Get monitoring now! super simple, one command!**
2021-01-27 19:51:55 +00:00
2021-02-02 11:22:04 +00:00
```bash
docker run -d --restart always -p "127.0.0.1:5000:5000" -v datastore-volume:/datastore --name changedetection.io dgtlmoon/changedetection.io
2021-01-27 19:51:55 +00:00
```
2021-01-29 12:26:16 +00:00
Now visit http://127.0.0.1:5000 , You should now be able to access the UI.
2021-01-27 19:51:55 +00:00
2021-02-02 11:22:04 +00:00
#### Updating to latest version
Highly recommended :)
```bash
docker pull dgtlmoon/changedetection.io
docker kill $(docker ps -a|grep changedetection.io|awk '{print $1}')
docker rm $(docker ps -a|grep changedetection.io|awk '{print $1}')
docker run -d --restart always -p "127.0.0.1:5000:5000" -v datastore-volume:/datastore --name changedetection.io dgtlmoon/changedetection.io
2021-02-02 11:22:04 +00:00
```
2021-02-01 10:43:39 +00:00
### Screenshots
2021-02-01 09:52:53 +00:00
Application running.
2021-02-01 09:52:53 +00:00
![Self-hosted web page change monitoring application screenshot](screenshot.png?raw=true "Self-hosted web page change monitoring screenshot")
Examining differences in content.
![Self-hosted web page change monitoring context difference screenshot](screenshot-diff.png?raw=true "Self-hosted web page change monitoring context difference screenshot")
2021-01-27 19:55:28 +00:00
### Future plans
- Greater configuration of check interval times, page request headers.
2021-01-31 19:20:49 +00:00
- ~~General options for timeout, default headers~~
2021-01-27 19:55:28 +00:00
- On change detection, callout to another API (handy for notices/issue trackers)
2021-01-31 19:20:49 +00:00
- ~~Explore the differences that were detected~~
- Add more options to explore versions of differences
2021-01-27 19:56:19 +00:00
- Use a graphic/rendered page difference instead of text (see the experimental `selenium-screenshot-diff` branch)
2021-01-27 19:55:28 +00:00
Please :star: star :star: this project and help it grow! https://github.com/dgtlmoon/changedetection.io/