-
Notifications
You must be signed in to change notification settings - Fork 96
/
seeder.js
74 lines (63 loc) · 1.69 KB
/
seeder.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const fs = require("fs");
const mongoose = require("mongoose");
const colors = require("colors");
const dotenv = require("dotenv");
//load env vars
dotenv.config({ path: "./config/config.env" });
//load models
const User = require("./models/User");
const Product = require("./models/Product");
const Category = require("./models/Category");
const Review = require("./models/Review");
const Order = require("./models/Order");
// Connect to DB
mongoose.connect(process.env.MONGO_URI, {
useNewUrlParser: true,
useCreateIndex: true,
useFindAndModify: false,
useUnifiedTopology: true,
});
//Read JSON files
const users = JSON.parse(
fs.readFileSync(`${__dirname}/_data/users.json`, "utf-8")
);
const products = JSON.parse(
fs.readFileSync(`${__dirname}/_data/product.json`, "utf-8")
);
const categories = JSON.parse(
fs.readFileSync(`${__dirname}/_data/category.json`, "utf-8")
);
const reviews = JSON.parse(
fs.readFileSync(`${__dirname}/_data/reviews.json`, "utf-8")
);
//Import into DB
const importData = async () => {
try {
await User.create(users);
await Product.create(products);
await Category.create(categories);
//await Review.create(reviews);
console.log(`Data Imported`.green.inverse);
process.exit();
} catch (error) {
console.log(error);
}
};
const deleteData = async () => {
try {
await User.deleteMany();
await Product.deleteMany();
await Category.deleteMany();
//await Review.deleteMany();
await Order.deleteMany();
console.log("Data Destroy".red.inverse);
process.exit();
} catch (error) {
console.log(error);
}
};
if (process.argv[2] === "-i") {
importData();
} else if (process.argv[2] === "-d") {
deleteData();
}