rssbundler fetches multiple RSS feeds, combines them into one feed, and serves it via http.
to start, you need to set the FEED_URLS
environment variable.
Example
make
export FEED_URLS="https://website.com/feed1.xml, https://website.com/feed2.xml"
./rssbundler
Configuration example
FEED_URLS="https://example.com/feed1, https://example.com/feed2"
LISTEN_ADDR=":3000"
FETCH_INTERVAL=1h
FETCH_TIMEOUT=1m
OUTFEED_TITLE=bundle
OUTFEED_LINK="https://example.com/bundle"
OUTFEED_DESCRIPTION="this is a bundle feed, which contains the entries from multiple rss feeds."
OUTFEED_AUTHOR="bundler robot"
OUTFEED_AUTHOR_EMAIL="example@example.com"
OUTFEED_ERROR_COOLDOWN=24h
DEBUG=false