An open API service indexing awesome lists of open source software.

https://github.com/klarkc/ssb-bot-feed

Scuttlebutt bot that read RSS feeds and post updates automatically
https://github.com/klarkc/ssb-bot-feed

atom bot rss scuttlebutt ssb ssb-client ssb-server

Last synced: 5 months ago
JSON representation

Scuttlebutt bot that read RSS feeds and post updates automatically

Awesome Lists containing this project

README

          

# ssb-bot-feed

[![backers](https://img.shields.io/badge/backers-0-yellow?style=for-the-badge)](https://handle.me/walkerleite)

Scuttlebutt bot that read RSS feeds and post updates automatically

## Usage

Download and run [ssb-server](https://github.com/ssbc/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](https://github.com/ssbc/ssb-server)) and uses `~/.ssb` settings.

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

## Docker

The docker image assumes that you have a [ssb-server](https://github.com/ssbc/ssb-server) listening on localhost:8008

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

```bash
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

- [marine-master/ssb-bot-feed](https://www.npmjs.com/package/@marine-master/ssb-bot-feed) more robust fork with yaml configuration and more features (unmaintained)