Skip to content

Commit a519063

Browse files
committed
Update instructions images
1 parent 6fad034 commit a519063

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

instructions/docs/part_0_A.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## Part 0 (A): Preparation: get RottenPotatoes running locally
22

3+
4+
The actual RottenPotatoes starter app you will use is in another public repo: [saasbook/rottenpotatoes-rails-intro](https://github.com/saasbook/rottenpotatoes-rails-intro). Fork that repo to your own GitHub account, and then
5+
clone your fork:
6+
7+
```sh
8+
$ git clone git@github.com:[your_github_username]/rottenpotatoes-rails-intro.git
9+
```
10+
311
Whenever you start working on a Rails project, the first thing you should do is to run Bundler, to make sure all the app's gems are installed. Switch to the app's root directory (presumably `rottenpotatoes-rails-intro`) and run `bundle install --without production` (you only need to specify `--without production` the first time, as this setting will be remembered on future runs of Bundler for this project).
412

513
Finally, get the local database created:

instructions/docs/part_1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ When the listing page is redisplayed with sorting-on-a-column enabled, the colum
66

77
The result should look something like this:
88

9-
![](https://github.com/saasbook/hw-rails-intro/blob/master/table-header-screenshot.png)
9+
![Screeing showing the "Movie Title" column selected with a yellow background.](../table-header-screenshot.png)
1010

1111
**IMPORTANT for grading purposes:**
1212

instructions/docs/part_2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Enhance RottenPotatoes as follows. At the top of the All Movies listing, add some checkboxes that allow the user to filter the list to show only movies with certain MPAA ratings:
44

5-
![](https://github.com/saasbook/hw-rails-intro/blob/master/filter-screenshot.png)
5+
![Screenshot. The filter should be included somewhere below the page heading. It should have a checkbox for each rating, followed by a "Refresh" button.](../filter-screenshot.png)
66

77
When the Refresh button is pressed, the list of movies is redisplayed showing only those movies whose ratings were checked.
88

0 commit comments

Comments
 (0)