RSSingle/README.md

41 lines
838 B
Markdown
Raw Normal View History

2022-06-19 18:17:57 +02:00
# RSSingle
2022-06-19 18:17:57 +02:00
Generates an RSS file from the list of other feeds (RSS/Atom/JSON). Very handy when you want to centralise the list of your feeds in one place and all your devices feed from the same place.
2022-06-19 18:17:57 +02:00
## Run
2022-06-19 18:17:57 +02:00
1. Download the binary.
2022-06-19 18:17:57 +02:00
``` shell
wget
```
2022-06-19 18:17:57 +02:00
2. Gives execution permissions.
2022-06-19 18:17:57 +02:00
``` shell
chmod +x rssingle
```
2022-06-19 18:17:57 +02:00
3. In the same directory as the binary, you can create a local `config.yml` file in this format:
2022-06-19 18:17:57 +02:00
``` yaml
title: My RSS Feed
description: My customised RSS feed with technology news
feeds:
- https://programadorwebvalencia.com/feed/
- https://republicaweb.es/feed/
```
2022-06-19 18:17:57 +02:00
If not, you can download the example in the repository.
2022-06-19 18:17:57 +02:00
4. Run the binary.
2022-06-19 18:17:57 +02:00
``` shell
./rssingle
```
2022-06-19 18:17:57 +02:00
A file called `rss.xml` will be created.
2022-06-19 18:17:57 +02:00
## Thanks
@shymega for his original project [singlerss](https://github.com/shymega/singlerss).