Skip to content

Commit e4fc1cc

Browse files
committed
Add bash syntax highlighting in README
1 parent e3aae4d commit e4fc1cc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ This is a boilerplate application for building REST APIs in Node.js using ES6 an
3030
## Getting Started
3131

3232
Clone the repo:
33-
```
33+
```sh
3434
git clone [email protected]:KunalKapadia/express-mongoose-es6-rest-api.git
3535
cd express-mongoose-es6-rest-api
3636
```
3737

3838
Install dependencies:
39-
```
39+
```sh
4040
npm install
4141
```
4242

4343
Start server:
44-
```
44+
```sh
4545
# set DEBUG env variable to get debug logs
4646
DEBUG=express-mongoose-es6-rest-api:* npm start
4747
OR
@@ -54,7 +54,7 @@ NODE_ENV=production npm start
5454
```
5555

5656
Execute tests:
57-
```
57+
```sh
5858
# compile with babel and run tests
5959
npm test (or gulp mocha)
6060

@@ -63,7 +63,7 @@ gulp mocha --code-coverage-reporter text
6363
```
6464

6565
Other gulp tasks:
66-
```
66+
```sh
6767
# Wipe out dist and coverage directory
6868
gulp clean
6969
# Lint code with ESLint
@@ -73,7 +73,7 @@ gulp
7373
```
7474

7575
Make it your own:
76-
```
76+
```sh
7777
rm -rf .git && git init && npm init
7878
```
7979

0 commit comments

Comments
 (0)