Skip to content

Latest commit

 

History

History
65 lines (47 loc) · 1.55 KB

readme.md

File metadata and controls

65 lines (47 loc) · 1.55 KB

Intro

Replicate Yahoo! Pipes idea in command line and generate static pages.

Requirements

  • static pages
  • refresh via some cron job
  • as simple as possible (server side and in terms of implementation)

Minimal PoC

From Andy's brain

Brain dump of the config file format (toml)

The config file should be as simple as something like:

[sources]
rss1 = "https://hotnews.ro/"
rss2 = "https://orf.at"
rss3 = "feed.xml"

[filter.electric]
in = [ "rss1", "rss2" ]
contains = "electric car"

[filter.tesla]
in = [ "rss1" ]
contains = [ "tesla" ]

[output]
combine = ["tesla", "electric"]

TODO

Support these (or something like it), also:

[filter.unique]
in = [ "electric", "tesla" ]
mix = "dedup"
# mix = "and"

[output]
combine = "unique"

This is "the UI", so make it simple!