Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 970 Bytes

README.markdown

File metadata and controls

24 lines (19 loc) · 970 Bytes

StoreEngine

A webstore that recreates the good ol' days of traveling the Oregon Trail. We sell Oregon Trail adventures at oregonsale.herokuapp.com.

Code Climate

Up and Running

  • Install Ruby 2.1.5 first
  • Then clone this repo. If you clone first then install Ruby 2.1.5 this may not work. (rbenv install 2.1.5)
  • cd into the directory and remember to set the local version of ruby by typing in, rbenv local 2.1.5
  • gem install bundler
  • bundle
    • If you see errors related to installing libv8:
      • gem uninstall libv8
      • brew install v8
      • gem install therubyracer
      • bundle install
      • You'll probably see an error installing libv8
      • gem install libv8 -v '3.16.14.11' -- --with-system-v8
      • bundle install
  • rake db:{create,migrate,seed}
  • rails s