-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseeds.js
executable file
·56 lines (51 loc) · 1.73 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
var mongoose = require("mongoose");
var Campground = require("./models/campground");
var Comment = require("./models/comment");
var data = [
{
name: "Cloud's Rest",
image: "https://farm1.staticflickr.com/60/215827008_6489cd30c3.jpg",
description: "blah blah blah blah"
},
{
name: "Lanier",
image: "https://farm1.staticflickr.com/60/215827008_6489cd30c3.jpg",
description: "blah blah blah blah"
},
{
name: "Stone Mountain",
image: "https://farm1.staticflickr.com/60/215827008_6489cd30c3.jpg",
description: "blah blah blah blah"
}
];
function seedDB() {
//Remove all campgrounds
Campground.remove({}, function (err) {
// if(err)
// console.log(err);
// else
// console.log("Database deleted");
// data.forEach(function (seed) {
// Campground.create(seed, function (err, campground) {
// if(err)
// console.log(err);
// else
// console.log("Campground added");
// //Create a comment
// Comment.create({
// text: "This place is great but no wifi",
// author: "Homer"
// }, function (err, comment) {
// if(err)
// console.log(err);
// else{
// campground.comments.push(comment);
// campground.save();
// console.log("Created new comment");
// }
// });
// });
// });
});
}
module.exports = seedDB;