-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
seeds.js
60 lines (56 loc) · 1.24 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
59
60
const mongoose = require('mongoose');
const Product = require('./models/product');
mongoose.connect('mongodb://localhost:27017/farmStand', { useNewUrlParser: true, useUnifiedTopology: true })
.then(() => {
console.log("MONGO CONNECTION OPEN!!!")
})
.catch(err => {
console.log("OH NO MONGO CONNECTION ERROR!!!!")
console.log(err)
})
// const p = new Product({
// name: 'Ruby Grapefruit',
// price: 1.99,
// category: 'fruit'
// })
// p.save()
// .then(p => {
// console.log(p)
// })
// .catch(e => {
// console.log(e)
// })
const seedProducts = [
{
name: 'Fairy Eggplant',
price: 1.00,
category: 'vegetable'
},
{
name: 'Organic Goddess Melon',
price: 4.99,
category: 'fruit'
},
{
name: 'Organic Mini Seedless Watermelon',
price: 3.99,
category: 'fruit'
},
{
name: 'Organic Celery',
price: 1.50,
category: 'vegetable'
},
{
name: 'Chocolate Whole Milk',
price: 2.69,
category: 'dairy'
},
]
Product.insertMany(seedProducts)
.then(res => {
console.log(res)
})
.catch(e => {
console.log(e)
})