-
Notifications
You must be signed in to change notification settings - Fork 0
/
seeds.js
51 lines (44 loc) · 1.16 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
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 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)
})