##Yelp Clone
The challenge for week 7 of Makers Academy was to recreate the Yelp website. This was done using Ruby on Rails, and test driven with RSpec and Capybara. Users can log in, upload restaurants and review other restaurants. The reviews can be endorsed by other users, which is implemented using AJAX. The database used is PostgreSQL.
- Clone this repo using
$ git clone git@github.com:Wynndow/yelp_clone.git
- Move into the new directory using
$ cd yelp_clone
- Install dependencies using
$ bundle
- Generate databases using
$ rake db:create
- Migrate databases using
$ rake db:migrate
- Start the server using
$ rails s
- Navigate to
http://localhost:3000/
- Tests are run form the command line using
$ rspec
- Improve the front end design