/hw4fall17

Repo for fourth SELT homework assignment, fall 2017

Primary LanguageRuby

RottenPotatoes demo app: getting started

  1. Fork and clone this repo (github.com/SELT/rotten-potatoes)

  2. Then do cd rotten-potatoes to change to the app's top-level directory.

  3. Enter the command bundle install to make sure all the gems (libraries) used by the app are in place.

  4. Run rake db:migrate to apply the database migrations.

  5. Run rake db:seed to seed the initial database contents.

  6. Run rails server -p $PORT -b $IP to start the app. Cloud9 will pop up a window showing the URL to visit in your browser to interact with the running app. You can also view the app in the Cloud9 "Preview" window.

  7. To kill the server, enter CNTL-c.