|
|
||
|---|---|---|
| app | ||
| bin | ||
| config | ||
| db | ||
| lib | ||
| public | ||
| spec | ||
| vendor/assets | ||
| .gitignore | ||
| .rspec | ||
| Gemfile | ||
| Gemfile.lock | ||
| README.md | ||
| Rakefile | ||
| config.ru | ||
| heroku login | ||
| heroku login.pub | ||
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:
-
Setup a Cloud9 environment for the course.
-
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
-
Then
cd rottenpotatoes-rails-introto change to the app's directory. -
Run the command
bundle install --without productionto make sure all the gems (libraries) used by the app are in place. -
Run
bundle exec rake db:setupto create the initial database. -
Run
rails server -p $PORT -b $IPto start the app. Cloud9 will pop up a window showing the URL to visit in your browser to interact with the running app.