From abf5ce1aa790127206fe7ef7e7736387835610bd Mon Sep 17 00:00:00 2001 From: Akhil G Krishnan Date: Mon, 27 Nov 2023 20:29:34 +0530 Subject: [PATCH] Add markdown codehighlight for bash script Removed unwanted changes --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 019ba3a41e..d084726abf 100644 --- a/README.md +++ b/README.md @@ -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.