-
Notifications
You must be signed in to change notification settings - Fork 0
/
seeds.js
58 lines (53 loc) · 2.17 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
var mongoose = require("mongoose");
var Campground = require("./models/campground");
var Comment = require("./models/comment")
var data = [
{
name:"Cloud's Rest",
image: "https://source.unsplash.com/K9olx8OF36A",
description: "blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah"
},
{
name:"Desert Mountain",
image: "https://source.unsplash.com/3fJOXw1RbPo",
description: "blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah"
},
{
name:"Big Bend",
image: "https://source.unsplash.com/tRGwX1HcTd4",
description: "blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah"
},
]
function seedDB(){
Campground.remove({}, function(err){
// if(err){
// console.log(err);
// }
// console.log("removed campgrounds!");
// //add a few campgrounds
// data.forEach(function(seed){
// Campground.create(seed, function(err, campground){
// if(err){
// console.log(err);
// } else{
// console.log("added a campground");
// //create a comment
// Comment.create({
// author: "Homer",
// text: "This place is great, wish there was internet"
// }, function(err, comment){
// if(err){
// console.log(err);
// } else{
// campground.comments.push(comment);
// campground.save();
// console.log("Created new comment");
// }
// })
// }
// });
// });
})
//add a few comments
}
module.exports = seedDB;