Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 894 Bytes

File metadata and controls

29 lines (19 loc) · 894 Bytes

RssSync

Hex.pm Hex.pm

This is an OTP application which retrieves, parses, and stores RSS feeds, and when prompted to, keeps them in sync with their RSS feed sources.

Its API isn't finalized but it's usable as is and currently allows for adding, removing, synchronizing, and persisting feeds to disk.

Installation

Available on Hex, the package can be installed as:

  1. Add rss_sync to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:rss_sync, "~> 0.1.0"}]
end
```
  1. Ensure rss_sync is started before your application:
```elixir
def application do
  [applications: [:rss_sync]]
end
```