latter-jacob / couch_potatoes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Codeship Status for latter-jacob/couch_potatoes Code Climate Coverage Status

Couch Potatoes

Review TV show theme songs. This app is intended for having while rating your favorite TV show theme songs! You can see a video of the song, its title, and review as you watch. Later you can vote on reviews by others.

Live app hosted on Heroku

Couch Potatoes

ER Diagrams and Schema structure

ER

Ruby version

2.1.5

System dependencies

  • gem 'mailcatcher'

Mail catcher is not included in the Gem file and instead should be added via your console:

$ gem install mailcatcher && mailcatcher

Please include in your development.rb

# config/development.rb
Rails.application.configure do
 # mailcatcher config
 #   to view emails generated in development:
 #   `gem install mailcatcher && mailcatcher`
 config.action_mailer.delivery_method = :smtp

 config.action_mailer.smtp_settings = {
   address: "localhost",
   port: 1025
 }

 config.action_mailer.default_url_options = {
   host: "localhost",
   port: 3000
 }
end

Get Started

  1. Bundle the gems

Bundle

  1. Bootup the database:

rake db:create

  1. Bring in your migrations

rake db:migrate

  1. Run the test suite

rake

Deployment

On a clean Master branch, run:

git push heroku master

About


Languages

Language:Ruby 49.1%Language:CSS 36.1%Language:HTML 13.7%Language:JavaScript 1.1%