We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b4e92f + abf5ce1 commit 4646b00Copy full SHA for 4646b00
README.md
@@ -58,19 +58,24 @@ In addition to that, Rails also comes with:
58
59
1. Install Rails at the command prompt if you haven't yet:
60
61
- $ gem install rails
+ ```bash
62
+ $ gem install rails
63
+ ```
64
65
2. At the command prompt, create a new Rails application:
66
- $ rails new myapp
67
68
+ $ rails new myapp
69
70
71
where "myapp" is the application name.
72
73
3. Change directory to `myapp` and start the web server:
74
- $ cd myapp
- $ bin/rails server
-
75
76
+ $ cd myapp
77
+ $ bin/rails server
78
79
Run with `--help` or `-h` for options.
80
81
4. Go to `http://localhost:3000` and you'll see the Rails bootscreen with your Rails and Ruby versions.
0 commit comments