This is the base repo for a brownfield project used at Turing for Backend Mod 3.
Project Spec and Evaluation Rubric: https://github.com/turingschool-examples/brownfield-of-dreams
Students will continue to build on the existing code base using the cards within the following Github Project: https://github.com/turingschool-examples/brownfield-of-dreams/projects/1
Learning Goals and Labels
The cards are labeled in a way that correspond to learning goals or to specific areas you might personally want to focus on.
Cards should be completed from top to bottom in the To Do column. Cards labeled good first issue
are good as filler work and will allow you to practice common Rails skills.
This is a Ruby on Rails application used to organize YouTube content used for online learning. Each tutorial is a playlist of video segments. Within the application an admin is able to create tags for each tutorial in the database. A visitor or registered user can then filter tutorials based on these tags.
A visitor is able to see all of the content on the application but in order to bookmark a segment they will need to register. Once registered a user can bookmark any of the segments in a tutorial page.
First you'll need to setup an API key with YouTube and have it defined within ENV['YOUTUBE_API_KEY']
. There will be one failing spec if you don't have this set up.
Clone down the repo
$ git clone
Install the gem packages
$ bundle install
Install node packages for stimulus
$ brew install node
$ brew install yarn
$ yarn add stimulus
Set up the database
$ rake db:create
$ rake db:migrate
$ rake db:seed
Run the test suite:
$ bundle exec rspec
- Ruby 2.4.1
- Rails 5.2.0