Skip to content

Commit

Permalink
Add markdown codehighlight for bash script
Browse files Browse the repository at this point in the history
Removed unwanted changes
  • Loading branch information
akhilgkrishnan committed Jan 3, 2024
1 parent dc581c0 commit abf5ce1
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit abf5ce1

Please sign in to comment.