Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 765 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 765 Bytes

Rails Engine

Project Overview

Rails Engine is an online store API we built as a project for the 3rd module at Turing School of Software and Design. Our learning goals for this project were:

  • To build a versioned API with single responsability controllers
  • Use comprehensive TDD to drive our design
  • Practice comlpex Active Record queries to provide data which has business value
  • Continue to expand our git workflow and ability to successfully divide tasks and work as a team

How To Run

Clone The Project

$ git clone https://github.com/NZenitram/rails_engine.git

$ cd rails_engine

$ bundle install

Create The Database

$ rake db:create

$ rake db:migrate

Seed The Database

$ rake seed_data

Run Tests

$ rspec