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.
2.1.5
- 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
- Bundle the gems
Bundle
- Bootup the database:
rake db:create
- Bring in your migrations
rake db:migrate
- Run the test suite
rake
On a clean Master branch, run:
git push heroku master