-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseeder.js
52 lines (42 loc) · 1.09 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
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 Bootcamp = require('./models/bootcamp')
//connect to DB
mongoose.connect(process.env.MONGO_URI,{
useNewUrlParser: true,
useCreateIndex: true,
useFindAndModify: false,
useUnifiedTopology: true
});
// read JSON files
const bootcamps = JSON.parse(fs.readFileSync(`${__dirname}/_data/bootcamps.json`, 'utf-8'));
//import into DB
const importData = async () => {
try{
await Bootcamp.create(bootcamps);
console.log('Data Imported...'.green.inverse);
process.exit();
} catch(err) {
console.error(err);
}
}
//delete data
const deleteData = async () => {
try{
await Bootcamp.deleteMany();
console.log('Data destroyed...'.red.inverse);
process.exit();
} catch(err) {
console.error(err);
}
};
if (process.argv[2] === '-1') {
importData();
} else if (process.argv[2] === '-d') {
deleteData();
}