You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Sam Joseph 631e618a39
updates Gemfile.lock to Rails 4.2.6 and Ruby 2.3.0
10 years ago
app skeleton ready 11 years ago
bin Version usable with hw-rails-intro 11 years ago
config added root route 10 years ago
db use Guard rather than autotest; version initial schema.rb 10 years ago
lib Version usable with hw-rails-intro 11 years ago
public Version usable with hw-rails-intro 11 years ago
spec Version usable with hw-rails-intro 11 years ago
vendor/assets Version usable with hw-rails-intro 11 years ago
.gitignore adding base files from rottenpotatoes app 11 years ago
.rspec Version usable with hw-rails-intro 11 years ago
Gemfile Update Gemfile 10 years ago
Gemfile.lock updates Gemfile.lock to Rails 4.2.6 and Ruby 2.3.0 10 years ago
README.md Update README.md 10 years ago
Rakefile Version usable with hw-rails-intro 11 years ago
config.ru Version usable with hw-rails-intro 11 years ago

README.md

RottenPotatoes demo app: getting started

This app is associated with the free online course and (non-free) ebook Engineering Software as a Service.

To get started:

  1. Setup a Cloud9 environment for the course.

  2. In your Cloud9 terminal, type the following command to clone the repository to your development workspace:

git clone git@github.com:saasbook/rottenpotatoes-rails-intro.git

  1. Then cd rottenpotatoes-rails-intro to change to the app's directory.

  2. Run the command bundle install --without production to make sure all the gems (libraries) used by the app are in place.

  3. Run bundle exec rake db:setup to create the initial database.

  4. 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.