Skip to content

Scuttlebutt bot that read RSS feeds and post updates automatically

License

Notifications You must be signed in to change notification settings

klarkc/ssb-bot-feed

Folders and files

NameName
Last commit message
Last commit date
Jun 24, 2024
Mar 25, 2019
Aug 11, 2021
Aug 14, 2021
Mar 24, 2019
Aug 14, 2021
Oct 21, 2024
Mar 19, 2019
Dec 6, 2022
Aug 11, 2021
Jan 6, 2025
Sep 9, 2024

Repository files navigation

ssb-bot-feed

backers

Scuttlebutt bot that read RSS feeds and post updates automatically

Usage

Download and run ssb-server

npm install -g ssb-bot-feed

Syntax:

ssb-bot-feed [feed1] [feed2] [feedN]

Example:

ssb-bot-feed http://www.nintendolife.com/feeds/news

By default It connects on localhost:8008 (ssb-server) and uses ~/.ssb settings.

Full documentation: ssb-bot-feed --help.

Docker

The docker image assumes that you have a ssb-server listening on localhost:8008

~/.ssb is the path to .ssb folder where bot will load secrets and manifest

docker run -d --name ssb-bot-feed \
   --network="host" \
   --restart=always \
   -v ~/.ssb:/root/.ssb \
   klarkc/ssb-bot-feed -h localhost -p 8008 http://www.nintendolife.com/feeds/news

Alternatives