File tree 1 file changed +6
-6
lines changed 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -30,18 +30,18 @@ This is a boilerplate application for building REST APIs in Node.js using ES6 an
30
30
## Getting Started
31
31
32
32
Clone the repo:
33
- ```
33
+ ``` sh
34
34
git clone
[email protected] :KunalKapadia/express-mongoose-es6-rest-api.git
35
35
cd express-mongoose-es6-rest-api
36
36
```
37
37
38
38
Install dependencies:
39
- ```
39
+ ``` sh
40
40
npm install
41
41
```
42
42
43
43
Start server:
44
- ```
44
+ ``` sh
45
45
# set DEBUG env variable to get debug logs
46
46
DEBUG=express-mongoose-es6-rest-api:* npm start
47
47
OR
@@ -54,7 +54,7 @@ NODE_ENV=production npm start
54
54
```
55
55
56
56
Execute tests:
57
- ```
57
+ ``` sh
58
58
# compile with babel and run tests
59
59
npm test (or gulp mocha)
60
60
@@ -63,7 +63,7 @@ gulp mocha --code-coverage-reporter text
63
63
```
64
64
65
65
Other gulp tasks:
66
- ```
66
+ ``` sh
67
67
# Wipe out dist and coverage directory
68
68
gulp clean
69
69
# Lint code with ESLint
73
73
```
74
74
75
75
Make it your own:
76
- ```
76
+ ``` sh
77
77
rm -rf .git && git init && npm init
78
78
```
79
79
You can’t perform that action at this time.
0 commit comments