RSS Aggregator for Gemini Protocol https://crates.io/crates/pulsarss
Find a file
2025-02-12 18:40:30 +02:00
.github add funding reference 2025-02-12 01:56:50 +02:00
src complete capacity argument 2025-02-12 18:40:30 +02:00
.gitignore initial commit 2025-02-11 18:37:02 +02:00
Cargo.toml update version 2025-02-12 04:44:15 +02:00
LICENSE Initial commit 2025-02-11 18:23:04 +02:00
README.md add index, limit options, order arguments asc 2025-02-12 18:38:31 +02:00

pulsarss

Build Dependencies crates.io

RSS Aggregator for Gemini Protocol

pulsarss is a multi-process crawler for RSS feeds, that collects and converts results into the static gemtext files; also aggregates an actual index.gmi file in the relevant folders organized by channel / item pub_date.

Note

At this moment, pulsarss does not provide any built-in server. To read the data collected, use any server for static files listed in the awesome-gemini

Install

cargo install pulsarss

Launch

pulsarss --source https://path/to/feed.rss

Options

  • source, s - RSS feed source (required)
  • target, t - Destination directory (public by default)
  • update, u - Update timeout in seconds (60 by default)
  • index, i - Generate index.gmi file (true by default)
  • limit, l - Limit channel items (unlimited by default)
  • output, o - Print output (dw by default):
    • d - debug
    • w - warning
    • n - disable

Autostart

systemd

# /etc/systemd/system/pulsarss.service

[Unit]
After=network.target

[Service]
Type=simple
User=pulsarss
Group=pulsarss
ExecStart=pulsarss -s https://path/to/feed.rss

[Install]
WantedBy=multi-user.target
  • systemctl daemon-reload - reload systemd configuration
  • systemctl enable pulsarss - enable service on system startup
  • systemctl start pulsarss - start server