https://github.com/prikhi/rssonate
Your Friendly Neighborhood RSS Reader
https://github.com/prikhi/rssonate
bootstrap4 django elm rss rss-reader web
Last synced: about 2 months ago
JSON representation
Your Friendly Neighborhood RSS Reader
- Host: GitHub
- URL: https://github.com/prikhi/rssonate
- Owner: prikhi
- License: gpl-3.0
- Created: 2015-06-06T08:25:54.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-12-09T00:00:57.000Z (over 9 years ago)
- Last Synced: 2025-07-26T13:42:34.564Z (11 months ago)
- Topics: bootstrap4, django, elm, rss, rss-reader, web
- Language: Elm
- Homepage: https://rssonate.com
- Size: 815 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
RSSonate
--------
A web-based RSS reader built with Elm on top of a Django API server.
cd server
pip install -r requirements.py
./manage.py migrate
./manage.py runserver 0.0.0.0:8000
cd client
npm install
npm run dev
firefox http://localhost:7000
You can use the `refresh_feeds` management command along with a cronjob to
automatically keep your feeds up to date:
$ crontab -e
*/360 * * * * bash -c 'source ~/.virtualenvs/rssonate/bin/activate; ~/Projects/RSSonate/server/manage.py refresh_feeds'
