Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.06 KB

README.md

File metadata and controls

48 lines (34 loc) · 1.06 KB

Stack-Flow-Over

Mini stack Overflow clone using Rails, shallow nesting, ReST principles, polymorphic associations, and bcrypt user authorization.

Team members:

  • Sasha Tailor
  • Natalie Polen
  • Chris Guard

To run the app:

  1. Clone the repo
$ git clone git://github.com/SashaTlr/Stack-Flow-Over.git
  1. Navigate to local copy in Terminal and run in
$ bundle install
  1. Set up the database by running
$ rake db:migrate
  1. Run server using command
$ rails s
  1. Navigate to localhost to view the site.

Database Schema:

schema

User Stories:

  • As a User, I want to view all questions, answers and comments on the site.
  • As a User, I want to be able to log in.
  • As a User, i want to be able to view questions, comments, and answers that I have made.
  • As a User, I want to vote on a question, comment, or answer on the site.
  • As a User, I want to be able to answer a question.
  • As a User, I want to leave comments on questions or answers.
  • As a User, I want to select the best answer to a question I posted.