Skip to content

A simple script that will check RSS feeds for updates, and if there are any found publish a discord webhook.

License

Notifications You must be signed in to change notification settings

ghostdevv/discord-rss

Repository files navigation

Discord RSS

A simple script that will check RSS feeds for updates, and if there are any found publish a discord webhook.

Setup

You can run it in docker using the docker-compose file. Here are the steps I followed:

  1. Create a folder to house everything in
mkdir discord-rss
  1. Create your config.json

The contents should look something like this:

{
	"feeds": [],
	"webhooks": []
}
  1. Copy the docker-compose.yml
wget https://raw.githubusercontent.com/ghostdevv/discord-rss/refs/heads/main/docker-compose.yml
  1. Start the script
docker compose up -d

Health Checks

You can optionally add a health check, I designed this with uptime kuma in mind but it should be flexible enough for other platforms. Please make an issue if there's anything missing! The following example can be added to your config.json. It'll make a GET request to the endpoint every 60 seconds.

{
	"healthCheck": {
		"endpoint": "",
		"interval": 60,
		"method": "GET"
	}
}

About

A simple script that will check RSS feeds for updates, and if there are any found publish a discord webhook.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages