Skip to content

Commit 7299dfa

Browse files
committed
Clarify that multiple lines in the console are separate commands
1 parent edd004d commit 7299dfa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sites/installfest/create_and_deploy_a_rails_app.step

+3-1
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,15 @@ step "Generate a database model" do
7171
tip "If your prompt doesn't already show that you are (still) in the test_app folder" do
7272
console "cd test_app"
7373
end
74-
74+
7575
console <<-BASH
7676
rails generate scaffold user name:string email:string address:text active:boolean
7777
rake db:migrate
7878
rails server
7979
BASH
8080

81+
message "**Note:** the above are three separate commands. Type each line into the terminal separately, not as one single command."
82+
8183
message "Wait until your console shows that the Webrick server has started (just like before). Then, in the browser, visit <http://localhost:3000/users>"
8284

8385
message "Click *New user* to create a user to make sure we can save to the database. Click *Back* to see your results. (The window where you ran `rails server` will display debugging information as you do so.)"

0 commit comments

Comments
 (0)