https://github.com/aldy505/mangadex-discord-notification
Poll mangadex in a certain interval, then send the manga updates to Discord via webhook
https://github.com/aldy505/mangadex-discord-notification
Last synced: about 2 months ago
JSON representation
Poll mangadex in a certain interval, then send the manga updates to Discord via webhook
- Host: GitHub
- URL: https://github.com/aldy505/mangadex-discord-notification
- Owner: aldy505
- License: mit
- Created: 2025-01-29T14:14:04.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-02-07T07:31:26.000Z (3 months ago)
- Last Synced: 2025-03-28T16:43:24.380Z (about 2 months ago)
- Language: Go
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mangadex Discord Notification
This is a small utility that will notify you when a new chapter is released on your favorite manga on Mangadex.
Best with Docker Compose:
```yaml
services:
mangadex-discord-notification:
image: ghcr.io/aldy505/mangadex-discord-notification:latest
restart: unless-stopped
environment:
SCHEDULE_RUN_INTERVAL: 1h # Optional, default is 1h
CONFIG_FILE_PATH: /app/config.json # Optional, if not set, will use `MANGA_IDS`
MANGA_IDS: manga_id_1,manga_id_2 # Optional, will fail to start if both `CONFIG_FILE_PATH` and `MANGA_IDS` are not set
WEBHOOK_URL: https://discord.com/api/webhooks/webhook_id/webhook_token # Required
LOG_LEVEL: info # Optional, default is info
volumes:
- ./config.json:/app/config.json:ro # Optional, if not set, will use `MANGA_IDS`
```Copy the `config.example.json` to `config.json` and fill in the required fields.
## License
[MIT](./LICENSE)