https://github.com/knutkirkhorn/page-change-notifier
Get notified on Discord when a page changes
https://github.com/knutkirkhorn/page-change-notifier
Last synced: 7 months ago
JSON representation
Get notified on Discord when a page changes
- Host: GitHub
- URL: https://github.com/knutkirkhorn/page-change-notifier
- Owner: knutkirkhorn
- License: mit
- Created: 2024-02-02T18:42:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-04T22:00:24.000Z (over 1 year ago)
- Last Synced: 2025-01-29T22:32:46.130Z (8 months ago)
- Language: JavaScript
- Size: 109 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# page-change-notifier
> Get notified on Discord when a page changes
## Install
### Build the docker image
```bash
docker build -t page-change-notifier .
```### Persist database in Docker
When using docker create an empty data.db file on the host machine before the first run:
```sh
# TODO: find better way to persist database
touch data.db
```### Run the docker container
```bash
docker run -d --name page-change-notifier \
-v $(pwd)/data.db:/usr/src/app/data.db \
page-change-notifier
```## Environment variables
See [.env.example](.env.example) for the required environment variables.