-
Notifications
You must be signed in to change notification settings - Fork 0
/
seeds.js
36 lines (31 loc) · 1008 Bytes
/
seeds.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
var mongoose =require("mongoose");
var Campground =require("./models/campgrounds");
var Comment =require("./models/comments");
var data=[
{
name:"Tso Moriri Lake, Ladakh",
image:"https://www.holidify.com/images/cmsuploads/compressed/640px-Tsomoriri_Lake_DSC4010_20190212171119.jpg",
description:"This is one of the best campsite to visit"
},
{
name:"Tso Moriri Lake, Ladakh",
image:"https://www.holidify.com/images/cmsuploads/compressed/640px-Tsomoriri_Lake_DSC4010_20190212171119.jpg",
description:"This is one of the best campsite to visit"
},
{
name:"Tso Moriri Lake, Ladakh",
image:"https://www.holidify.com/images/cmsuploads/compressed/640px-Tsomoriri_Lake_DSC4010_20190212171119.jpg",
description:"This is one of the best campsite to visit"
}
];
function seedDB(){
//Remove all campgrounds
Campground.remove({},function(err) {
if(err)
console.log(err);
console.log("removed")
//add a few campgrounds
})
//add comments
}
module.exports=seedDB;