Cybrkyd's Git Repositories

fetchrss - commit: 5658973

commit 565897301bf357a739d86446b5c11e2ea16728075cb914d67b3388a6688f9e99
author cybrkyd <noreply@cybrkyd.com> 2026-02-06 17:07:58 +0000
committer cybrkyd <noreply@cybrkyd.com> 2026-02-06 17:07:58 +0000

Commit Message

Formatting experiment on README

📊 Diffstat

README.md 4
1 files changed, 4 insertions(+), 0 deletions(-)

Diff

diff --git a/README.md b/README.md
index 0b86610..0ec748e 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,7 @@ This project is an implementation of a simple HTML RSS feed reader and aggregato
Clone the project.
1. On the web server, create a working directory called 'fetchrss'. Add the following files to it:
+
```
feed-loader.js
rss_agg.py
@@ -14,17 +15,20 @@ rss.sh
```
2. Make `rss_agg.py` and `rss.sh` executable:
+
```bash
chmod 750 rss_agg.py rss.sh
```
3. Call `feed-loader.js` from the HTML page where the RSS feeds will be displayed:
+
```
<div id="rss-feed-box"></div>
<script src="/fetchrss/feed-loader.js"></script>
```
4. Add CRON jobs to run `rss_agg.py` and `rss.sh` on a schedule:
+
```
0 */6 * * * cd /path/to/fetchrss && bash rss.sh >/dev/null 2>&1
3 */6 * * * cd /path/to/fetchrss && python3 rss_agg.py >/dev/null 2>&1