Skip to content

Latest commit

 

History

History
68 lines (45 loc) · 968 Bytes

README.md

File metadata and controls

68 lines (45 loc) · 968 Bytes

The Digest: SWEN30006 Project 3

Introduction

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.

Team

The Digest was developed by:

Brennon Williams, Washington and Lee University

Nick Batchelder, Brown University

Myles Gleeson, The University of Melbourne

Usage

  1. Run:
#!console

brew install redis
  1. Run:
#!console

bundle install
  1. Run:
#!console

rake db:create
  1. Run:
#!console

rake db:migrate
  1. Initialize the backend server with:
#!console

redis-server &
  1. Initialize the Sidekiq Worker with:
#!console

bundle exec sidekiq
  1. Initialize the Rails server with:
#!console

rails s