The Digest is a news aggregator service that scrapes articles from several news outlets, generates tags for each article, and serves the articles to users with relevant interests both within the application and through email.
This application is our Project 3 entry for Software Engineering 30006, The University of Melburne.
The Digest was developed by:
Brennon Williams, Washington and Lee University
Nick Batchelder, Brown University
Myles Gleeson, The University of Melbourne
- Run:
#!console
brew install redis
- Run:
#!console
bundle install
- Run:
#!console
rake db:create
- Run:
#!console
rake db:migrate
- Initialize the backend server with:
#!console
redis-server &
- Initialize the Sidekiq Worker with:
#!console
bundle exec sidekiq
- Initialize the Rails server with:
#!console
rails s