Merge pull request #50181 from akhilgkrishnan/add-codehighlight

Add markdown code highlight for bash script [skip ci]
This commit is contained in:
Rafael Mendonça França 2024-01-03 14:17:34 -05:00 committed by GitHub
commit 4646b0036b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -58,19 +58,24 @@ In addition to that, Rails also comes with:
1. Install Rails at the command prompt if you haven't yet:
$ gem install rails
```bash
$ gem install rails
```
2. At the command prompt, create a new Rails application:
$ rails new myapp
```bash
$ rails new myapp
```
where "myapp" is the application name.
3. Change directory to `myapp` and start the web server:
$ cd myapp
$ bin/rails server
```bash
$ cd myapp
$ bin/rails server
```
Run with `--help` or `-h` for options.
4. Go to `http://localhost:3000` and you'll see the Rails bootscreen with your Rails and Ruby versions.