Skip to content

Commit e716150

Browse files
committed
fixed versions for gulp
1 parent fa248fa commit e716150

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ We are an innovating team of Javascript experts, passionate about turning your i
1010

1111
[Lemoncode](http://lemoncode.net/services/en/#en-home) provides training services.
1212

13-
For the LATAM/Spanish audience we are running an Online Front End Master degree, more info: http://lemoncode.net/master-frontend
13+
For the LATAM/Spanish audience we are running an Online Front End Master degree, more info: http://lemoncode.net/master-frontend

server-mongo/README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
11
## To start mongo
22

3-
* mongod --dbpath D:\mongodb\data
3+
* mongod --dbpath D:/mongodb/data
4+
5+
### Open a new terminal and query the related collections. To start a new terminal we have to use mongo
6+
7+
```bash
8+
mongo
9+
```
10+
11+
### Now that is open, we can inspect the related databases and collections
12+
13+
```bash
14+
> show dbs
15+
```
16+
17+
```bash
18+
> use <database>
19+
```
20+
21+
```bash
22+
> show <collections>
23+
```
24+
25+
```bash
26+
> db.<collection>.find()
27+
```

server-mongo/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
"body-parser": "^1.15.2",
1414
"cors": "^2.8.1",
1515
"express": "^4.14.0",
16-
"gulp": "^3.9.1",
17-
"gulp-mocha": "^3.0.1",
18-
"gulp-nodemon": "^2.2.1",
16+
"gulp": "~3.9.1",
17+
"gulp-mocha": "~3.0.1",
18+
"gulp-nodemon": "~2.2.1",
1919
"mongoose": "^4.6.4",
2020
"should": "^11.1.1",
2121
"sinon": "^1.17.6"
2222
},
2323
"devDependencies": {
24-
"gulp-env": "^0.4.0",
24+
"gulp-env": "~0.4.0",
2525
"supertest": "^2.0.1"
2626
}
2727
}

0 commit comments

Comments
 (0)