Add markdown codehighlight for bash script

Removed unwanted changes
This commit is contained in:
Akhil G Krishnan 2023-11-27 20:29:34 +05:30
parent dc581c0cc7
commit abf5ce1aa7

@ -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.