forked from Vivek563/Institute-of-Professional-Studies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
seeds.js
651 lines (614 loc) · 34.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
const mongoose = require('mongoose');
const Announcements = require('./models/announcement');
const Courses = require('./models/course');
const Events = require('./models/event');
const Faculties = require('./models/faculty');
const NavbarItems = require('./models/navbarItem');
const News = require('./models/news');
const Notifications = require('./models/notification');
const Pages = require('./models/page');
const Staffs = require('./models/staff');
const Students = require('./models/student');
mongoose.connect('mongodb://127.0.0.1:27017/IPS')
.then(() => {
console.log("CONNECTION OPEN!!!")
})
.catch(err => {
console.log("OH NO ERROR!!!")
console.log(err)
})
const seedAnnouncements =[
{
title: 'Exam Notification',
description: 'Your Exam will be start from 11th of May',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'Center of computer application',
description: 'Bca syllubus has been changed',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'Practical Exam Notification',
description: 'Practical exam will be on 8th of May',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'Fresher party ',
description: 'Your freher party will be on 10th of may',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'Fairwell party ',
description: 'Fairwell party will be on 11th of may',
pdfUrl: 'pdf-1683245945479.pdf'
}
]
Announcements.insertMany(seedAnnouncements)
.then(res => {
})
.catch(err => {
console.log(err)
})
const seedCourses = [{
name: "M. Sc. Food Technology",
courseCode: "ms01",
centreCode: "cft",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 24
},{
name: "M. Sc. Nutritional Sciences",
courseCode: "ms02",
centreCode: "cft",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 24
},{
name: "B.Voc in Food Technology (5-Year integrated programme)",
courseCode: "bv01",
centreCode: "cft",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 36
},{
name: "Master of Computer Applications (MCA)",
courseCode: "mca01",
centreCode: "cce",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 24
},{
name: "Bachelor of Computer Applications (BCA)",
courseCode: "bca01",
centreCode: "cce",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 36
},{
name: "Post Graduate Diploma in Computer Applications(PGDCA)",
courseCode: "pgdca01",
centreCode: "cce",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 12
},{
name: "Five Year Integrated BCA+MCA (Data Science)",
courseCode: "ds01",
centreCode: "cce",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 60
},{
name: "B. A. in Media Studies",
courseCode: "ba01",
centreCode: "cms",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 36
},{
name: "B.Voc in Media Studies",
courseCode: "bvms01",
centreCode: "cms",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 36
},{
name: "M. voc in Media Studies",
courseCode: "mvms01",
centreCode: "cms",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 24
},{
name: "B. A. in Fashion Design & Technology",
courseCode: "bafdt01",
centreCode: "cfdt",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 36
},{
name: "B.Voc in Fashion Design & Technology",
courseCode: "bvfdt01",
centreCode: "cfdt",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 36
},{
name: "M.Voc in Fashion Design & Technology",
courseCode: "mvfdt01",
centreCode: "cfdt",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 24
},{
name: "Two year Advanced Diploma in Fashion Design",
courseCode: "adfd01",
centreCode: "cfdt",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 12
},{
name: "Two year Computer Aided Fashion Design",
courseCode: "cafd",
centreCode: "cfdt",
pdfUrl: "pdf-1683245945479.pdf",
description: "a",
duration: 24
}]
Courses.insertMany(seedCourses)
.then(res => {
})
.catch(err => {
console.log(err)
})
const seedEvents =[
{
title: 'workshop',
description: 'workshop will be organized on 11th of may',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'Order: Approved Model of Photocopier, Printer and Computer',
description: 'Center of computer education',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'Distinguish Lecture Series: India Foreign Policy Since Independence',
description: 'there will be a conference called the conference',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'Invitation for startups and sponsors to participate in the START-UP MELA 2023 on March 27, 2023, organised by the Incubation Centre',
description: 'Invitation for startups and sponsors to participate in the START-UP MELA 2023 on March 27, 2023, organised by the Incubation Centre',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'Thematic Talk on India G20 Presidency: Hope for the Future',
description: 'Thematic Talk on India G20 Presidency: Hope for the Future',
pdfUrl: 'pdf-1683245945479.pdf'
}
]
Events.insertMany(seedEvents)
.then(res => {
})
.catch(err => {
console.log(err)
})
const seedFaculties =[
{
name: 'Dummy Faculty name 1',
designation: 'this is designation of faculty 1',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of faculty 1',
researchPaperCount: 2,
photo: 'img-1683245811549.jpg',
centreCode: 'cms'
},
{
name: 'Dummy Faculty name 2',
designation: 'this is designation of faculty 2',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of faculty 2',
researchPaperCount: 2,
photo: 'img-1683245811549.jpg',
centreCode: 'cce'
},
{
name: 'Dummy Faculty name 3',
designation: 'this is designation of faculty 3',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of faculty 3',
researchPaperCount: 2,
photo: 'img-1683245811549.jpg',
centreCode: 'cft'
},
{
name: 'Dummy Faculty name 4',
designation: 'this is designation of faculty 4',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of faculty 4',
researchPaperCount: 2,
photo: 'img-1683245811549.jpg',
centreCode: 'cfdt'
},
{
name: 'Dummy Faculty name 5',
designation: 'this is designation of faculty 5',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of faculty 5',
researchPaperCount: 2,
photo: 'img-1683245811549.jpg',
centreCode: 'cms'
}
]
Faculties.insertMany(seedFaculties)
.then(res => {
})
.catch(err => {
console.log(err)
})
const seedNavbarItems =[
{
"item": "Home",
"serialNo": "1",
"link": "/",
"subItems": [],
"subLinks": []
},
{
"item": "About",
"serialNo": "2",
"link": "#",
"subItems": ["About UOA","About IPS"],
"subLinks": ["/home/aboutUoA","/home/about"]
},
{
"item": "Centres",
"serialNo": "3",
"link": "#",
"subItems": ["Centre of Computer Education","Centre of Fashion & Design Technology", "Centre of Food Technology", "Centre of Media Studies"],
"subLinks": ["/home/centre/cce", "/home/centre/cfdt", "/home/centre/cft", "/home/centre/cms"]
},
{
"item": "Student",
"serialNo": "4",
"link": "#",
"subItems": ["Syllabus","Library","Admit Card"],
"subLinks": ["/home/student","/home/Library", "https://www.allduniv.ac.in/student/admit-cards"]
},
{
"item": "Gallery",
"serialNo": "5",
"link": "/home/gallery",
"subItems": [],
"subLinks": []
},
{
"item": "Admission",
"serialNo": "6",
"link": "https://aupravesh2022.in/Home/Applicationform.aspx",
"subItems": [],
"subLinks": []
},
// {
// "item": "Newsletter",
// "serialNo": "9",
// "link": "/home/newsletter",
// "subItems": [],
// "subLinks": []
// },
{
"item": "Contact Us",
"serialNo": "7",
"link": "/home/contactus",
"subItems": [],
"subLinks": []
},
// {
// "item": "Alumni",
// "serialNo": "8",
// "link": "/home/alumni",
// "subItems": [],
// "subLinks": []
// }
]
NavbarItems.insertMany(seedNavbarItems)
.then(res => {
})
.catch(err => {
console.log(err)
})
const seedNews =[
{
title: 'Notification for Holiday on 04-05-2023',
description: 'Notification for Holiday on 04-05-2023',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: ' Inauguration of New Dynamic Website of University of Allahabad',
description: ' Inauguration of New Dynamic Website of University of Allahabad',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'Applications are invited for Dronacharya Awards & Best Research Scholar Awards',
description: 'Applications are invited for Dronacharya Awards & Best Research Scholar Awards',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'The 100th Episode of Mann Ki Baat',
description: 'The 100th Episode of Mann Ki Baat',
pdfUrl: 'pdf-1683245945479.pdf'
},
{
title: 'CRET 2022 : Schedule and Guidelines',
description: 'CRET 2022 : Schedule and Guidelines',
pdfUrl: 'pdf-1683245945479.pdf'
}
]
News.insertMany(seedNews)
.then(res => {
})
.catch(err => {
console.log(err)
})
const seedNotifications =[
{
title: 'Dummy Notification title 1',
description: 'this is description of notification 1',
pdfUrl: 'pdf-1683245945479.pdf',
centreCode: "cce"
},
{
title: 'Dummy Notification title 2',
description: 'this is description of notification 2',
pdfUrl: 'pdf-1683245945479.pdf',
centreCode: "cft"
},
{
title: 'Dummy Notification title 3',
description: 'this is description of notification 3',
pdfUrl: 'pdf-1683245945479.pdf',
centreCode: "cfdt"
},
{
title: 'Dummy Notification title 4',
description: 'this is description of notification 4',
pdfUrl: 'pdf-1683245945479.pdf',
centreCode: "cms"
},
{
title: 'Dummy Notification title 5',
description: 'this is description of notification 5',
pdfUrl: 'pdf-1683245945479.pdf',
centreCode: "cce"
}
]
Notifications.insertMany(seedNotifications)
.then(res => {
})
.catch(err => {
console.log(err)
})
const seedPages =[
{
name: "Full List",
title: "Full List - IPS",
meta: "Full List - IPS",
favicon: "favicon.ico",
centreCode: "loadmore",
shortDescription: "This is a short description.",
about: "this is detailed section."
},
{
name: "Institute of Professional Studies",
title: "IPS - University of Allahabad",
meta: "IPS - University of Allahabad",
favicon: "favicon.ico",
centreCode: "home",
shortDescription: "This is a short description.",
about: "this is detailed section."
},
{
name: "Library",
title: "IPS - Library",
meta: "IPS - Library",
favicon: "favicon.ico",
centreCode: "Library",
shortDescription: "This is a short description.",
about: "this is detailed section."
},
{
name: "Syllabus",
title: "Syllabus - IPS",
meta: "Syllabus - IPS",
favicon: "favicon.ico",
centreCode: "student",
shortDescription: "This is a short description.",
about: "this is detailed section."
},
{
name: "About - University of Allahabad",
title: "About - UoA",
meta: "About - UoA",
favicon: "favicon.ico",
centreCode: "aboutUoA",
shortDescription: "This is a short description.",
about: "this is detailed section."
},
{
name: "About - Institute of Professional Studies",
title: "About - IPS",
meta: "About - IPS",
favicon: "favicon.ico",
centreCode: "about",
shortDescription: "This is a short description.",
about: "this is detailed section."
},
{
name: "Gallery",
title: "Gallery | IPS",
meta: "Gallery | IPS",
favicon: "favicon.ico",
centreCode: "gallery",
shortDescription: "This is a short description.",
about: "this is detailed section."
},
{
name: "Contact Us",
title: "Contact Us | IPS",
meta: "Contact Us | IPS",
favicon: "favicon.ico",
centreCode: "contactus",
shortDescription: "This is a short description.",
about: "this is detailed section."
},
{
name: "Centre of Computer Education",
title: "Computer Education - IPS",
meta: "Computer Education - IPS",
favicon: "favicon.ico",
centreCode: "cce",
shortDescription: "<p>The Centre of Computer Education & Training was established under Institute of Professional Studies, University of Allahabad in December 2000. Initially it offered to University students short-term courses on Computer Basics, Programming, Hardware & Networking, Web Design and Computer-Aided Financial Management and training for DOEACC 'O' Level examination.</p><p>In 2006 the Centre was granted full accreditation by DOEACC Society (An autonomous body of Dept. of Information Technology, Ministry of Communication & Information Technology, Govt. of India, New Delhi) for a period of 6 years to conduct DOEACC 'O' Level computer courses. Later in the year 2007 the centre also initiated Master of Computer Applications (MCA) and Bachelor of Computer Applications (BCA).</p>",
about: "<p>The Centre of Computer Education & Training was established under the Institute of Professional Studies, University of Allahabad in December 2000. Initially, it offered to University students short-term courses on Computer Basics, Programming, Hardware & Networking, Web Design and Computer-Aided Financial Management and training for DOEACC 'O' Level examination.</p><p>In 2006 the Centre was granted full accreditation by DOEACC Society (An autonomous body of Dept. of Information Technology, Ministry of Communication & Information Technology, Govt. of India, New Delhi) for a period of 6 years to conduct DOEACC 'O' Level computer courses. Later in the year 2007 the centre also initiated Master of Computer Applications (MCA) and Bachelor of Computer Applications (BCA).</p><h4>OBJECTIVE</h4><ul><li>To provide a foundation in computing principles and business practices.</li><li>To help students analyse problems in a wide range of applications.</li><li>To provide educational and personality development facilities for preparing worthy citizens of tomorrow, hence, contribute to the growth of the society.</li><li>To provide industry-academia interface.</li><li>To prepare students to undertake system development and expose them to enterprise software management methodologies.</li><li>To conduct need based training programs & workshops.</li></ul><h4>FACILITIES</h4><ul><li>The Centre has air-conditioned computer labs with 200 computers in a networked environment.</li><li>Eight lecture rooms, all lecture rooms are furnished with multimedia equipment.</li><li>Physics / Electronics Lab for BCA students.</li><li>Digital Hardware Labs.</li><li>Microprocessor/ Micro-controller Lab.</li><li>Network Experimentation Lab</li><li>Library with over four thousand books</li><li>Internet access facility</li><li>The entire university campus including the university hostels and the guest house has been networked. All the units and the departments in the various campuses have been linked through optical fiber cable.</li><li>Computing Facilities and Labs:<p>The labs in the institute are modern and networked. It offers the students as well as the faculty good computing power on various platforms.</p></li></ul><h4>SCOPE OF EMPLOYMENT</h4><p>Students can opt for a career in application software development, testing, and maintenance/as system analyst/DB administrator/as independent software developers or entrepreneurs.</p><h4>ENGAGEMENT WITH THE SOCIETY</h4><ul><li>In each semester the Centre, through its book bank provides a set of good textbooks to the students so that they may study well.</li><li>The Institute is a member of the following societies of IEEE: IEEE Computer Society, IEEE Communications Society, IEEE Computational Intelligence Society, IEEE Information Theory Society, IEEE Control Systems Society, IEEE Signal Processing Society, and IEEE Education Society.</li><li>The Institute runs the student chapter of IEEE.</li></ul>"
},
{
name: "Centre of Fashion & Design Technology",
title: "Fashion & Design Technology - IPS",
meta: "Fashion & Design Technology - IPS",
favicon: "favicon.ico",
centreCode: "cfdt",
shortDescription: "<p>Today fashion is seen everywhere. With rising income levels, growing 'Look Good, Feel Good' attitude and development in the retail sector the fashion world indeed holds a good prospect. It has almost become a fashion in the business to be in the business of fashion.</p><p>Fashion can be simple and yet so elegant. It was only in India where unstitched fabrics created fashion for men and women that has been termed as the most innovative invention in the world of fashion. The Indians mastered the art of draping fabrics around the body and taught the world how a few yards of fabric like a sari or a dhoti or a shawl can make a wonderful fashion statement.</p><p>has been worn by Indian women for as long as 5000 years - and has been the most popular style in the history of women's fashion. Fashion creators of our country our master spinners, weavers, knitters and dyers, were known the world over for their exquisite craftsmanship and skill. The blend of Indian and Western cultures have made sarees and salwar kameez an international fashion statement. Ritu Kumar , Ritu Beri, Hemant Trivedi have made their way in the fashion scenario of PARIS - The fashion capital of world.</p>",
about: "<p>Today fashion is seen everywhere. With rising income levels, growing 'Look Good, Feel Good' attitude and development in the retail sector the fashion world indeed holds a good prospect. It has almost become a fashion in the business to be in the business of fashion.</p><p>Fashion can be simple and yet so elegant. It was only in India where unstitched fabrics created fashion for men and women that has been termed as the most innovative invention in the world of fashion. The Indians mastered the art of draping fabrics around the body and taught the world how a few yards of fabric like a sari or a dhoti or a shawl can make a wonderful fashion statement.</p><p>has been worn by Indian women for as long as 5000 years - and has been the most popular style in the history of women's fashion. Fashion creators of our country our master spinners, weavers, knitters and dyers, were known the world over for their exquisite craftsmanship and skill. The blend of Indian and Western cultures have made sarees and salwar kameez an international fashion statement. Ritu Kumar , Ritu Beri, Hemant Trivedi have made their way in the fashion scenario of PARIS - The fashion capital of world.</p><h4>OBJECTIVES</h4><ul><li>To prepare the students for the fashion industry.</li><li>To be able to implement techniques of Computer Aided Design (CAD) in the field of fashion designing for making it much simpler and faster.</li><li>To provide the knowledge of spinning, knitting, weaving and processing of all types of fabrics.</li><li>To design garments for commercial sale to suit a particular demographic group.</li><li>To be able to use artistic expertise combined with garment construction technique to create wearable apparel.</li><li>To understand quality control exercises to ensure quality of the garments. Sophisticated needle detector machines ensure that the products are metal-free.</li><li>To be able to develop in-house Printing & Embroidery setup to impart the requisite value additions to enhance the look and feel of the garments.</li><li>To understand the managerial responsibilities of a fashion personnel. To be able to formulate a procedure for pricing the products in proportion to production scale and collect information related to customer satisfaction.</li><li>To create awareness about the market and develop the ability to analyse the growth potentials.</li></ul><h4>SCOPE OF EMPLOYMENT</h4><p>Students can opt for career as Designer/ Pattern Maker/ Grader / Fashion Coordinator/ Printing Designer / Garment Manufacturer / Merchandiser / Fashion Photographer / Fashion Journalist.</p><h4>PRODUCTION HOUSE</h4><p>Institute has also set up a Production House to provide linkage with market and industry. It functions as a part of Entrepreneurship Development Cell. It also acts as incubator for its students and provides opportunity of \"earn while you learn\" to its students. The cell invites bright and feasible entrepreneurship ideas, puts forward a transparent stage for the students to speak, interact and participate.</p>"
},
{
name: "Centre of Food Technology",
title: "Food Technology - IPS",
meta: "Food Technology - IPS",
favicon: "favicon.ico",
centreCode: "cft",
shortDescription: "<p>Food and Nutrition Sciences are the sciences of the 21st century. The need is to have a multi-disciplinary focus on food. This was achieved by the creation of the Centre of Food Technology under the Institute of Professional Studies. Centre of Food Technology (CFT) has taken a holistic view of manpower planning in the food industry. The vision encompasses food science, food production, food processing, food technology, food safety, food management, entrepreneurship development, food processing and rural development; agriculture and industry linkage through food processing, quality assurance for safe food, research and development on functional foods.</p><p>Sound technical training in food industries and research institutes is also provided to the students so as to equip them with meticulous practical knowledge and build a competitive professional interface. We are proud to maintain a good placement record and strong collaboration with other premier food industries, research institutes, lth institutes, and hospitals of the country. It is the only centre of the university to offer the programs- B. Voc. (Bachelor of Vocation) in Food Processing and Technology, M.Sc. Food technology, M. Sc. Nutritional Sciences, D. Phil In Food Technology and Nutritional Sciences.</p>",
about: "<p>Food and Nutrition Sciences are the sciences of the 21st century. The need is to have a multi-disciplinary focus on food. This was achieved by the creation of the Centre of Food Technology under the Institute of Professional Studies. Centre of Food Technology (CFT) has taken a holistic view of manpower planning in the food industry. The vision encompasses food science, food production, food processing, food technology, food safety, food management, entrepreneurship development, food processing and rural development; agriculture and industry linkage through food processing, quality assurance for safe food, research and development on functional foods.</p><p>Sound technical training in food industries and research institutes is also provided to the students so as to equip them with meticulous practical knowledge and build a competitive professional interface. We are proud to maintain a good placement record and strong collaboration with other premier food industries, research institutes, lth institutes, and hospitals of the country. It is the only centre of the university to offer the programs- B. Voc. (Bachelor of Vocation) in Food Processing and Technology, M.Sc. Food technology, M. Sc. Nutritional Sciences, D. Phil In Food Technology and Nutritional Sciences.</p><h4>SCOPE OF EMPLOYMENT</h4><p>Students can opt for a career as a management professional in the food, hospitality, retail industry, and laboratories as Food Safety Officer/ R&D/ Quality Control Officer/ Food Auditor, Trainer/ Counselor in Food Sector/ Production/ Quality manager in food industries.</p><p>Students can pursue a lucrative career as dietitians in hospitals/ with the government sector and NGOs in community nutrition/ counselor in food industries/ nutritionist/ planning, monitoring and evaluation of nutrition and health programs/ entrepreneurial ventures in academic and research labs.</p><p>Students can pursue a lucrative career as dietitians in hospitals/ with the government sector and NGOs in community nutrition/ counselor in food industries/ nutritionist/ planning, monitoring and evaluation of nutrition and health programs/ entrepreneurial ventures in academic and research labs.</p><h4>FACILITIES</h4><p>Centre is proud to have a National Accreditation Board for Laboratories (NABL) certified \"Food Analysis and Research Laboratory (FARL)\" certified for Chemical and Biological Testing of Food Products and Water in the year 2013. The centre also acts as a nodal lab for the Food Safety and Standards Authority of India (FSSAI). The centre has adequate and latest facilities in terms of infrastructure and well-equipped laboratories with the support of various grants provided by the Ministry of Food Processing Industries (MoFPI) and the University Grants Commission (UGC). The following labs have been set up as under:</p><h4>ACADEMIC LABORATORIES:</h4><ul><li>Teaching Lab-I;</li><li>Teaching Lab-II</li><li>Experimental Cookery lab</li><li>Processing Lab</li><li>Microbiology Lab</li><li>Advanced Analytical Lab</li><li>Advanced Microbiology lab</li><li>Instrumentation Lab</li></ul><h4>RESEARCH DIVISION</h4><p>Current Research endeavors of the centre consist of the following thrust areas being strenuously worked upon:</p><ul><li>Health foods, Convenience foods, Nutraceuticals, Processed & Packaged Foods</li><li>Exploration and utilization of underutilized crops.</li><li>Utilization of by-products to develop value added products.</li><li>Addressal of micro and macro nutrient deficiencies through the development of fortified foods.</li><li>Pre-biotics and Probiotics for holistic health</li><li>Postharvest processing; Value addition; Shelf life extension of perishable foods etc</li><li>Quality control and quality assurance.</li></ul>"
},
{
name: "Centre of Media Studies",
title: "Media Studies - IPS",
meta: "Media Studies - IPS",
favicon: "favicon.ico",
centreCode: "cms",
shortDescription: "<p>In 21st Century the media has a wide spectrum to cover e.g.newspaper , television, radio, mobile, and internet and so on and so forth. The Media Industry is going global, becoming digital and converging. In our country Media Industry is growing at the rate of 20 percent per annum. Entertainment and media, together, form the country's sixth biggest industry, with 3.5 million people working in it.</p><p>Within the next 4-5 years, the industry is expected to cross eighty thousand crores annually. Media organization is now looking to optimize its reach across platforms such as newspaper, T.V., IPTV, Radio, Internet and Mobile. As converging media (Cross Media) content involves more than one platform, so it has a high demand of multi-skilled media persons.</p><p>The Centre prepares students for employment in the media industry. The courses has been designed for the real world of contemporary media. Students will work with industry-standard equipment gaining skills in media production (print, broadcast and online), research, communication, reporting and media handling. We believe that a combination of writing and production skills either in print, television or radio; a broad understanding of the media and the ability to think critically are essential for people who are planning careers in the rapidly evolving media industry.</p>",
about: "<p>In 21st Century the media has a wide spectrum to cover e.g.newspaper , television, radio, mobile, and internet and so on and so forth. The Media Industry is going global, becoming digital and converging. In our country Media Industry is growing at the rate of 20 percent per annum. Entertainment and media, together, form the country's sixth biggest industry, with 3.5 million people working in it.</p><p>Within the next 4-5 years, the industry is expected to cross eighty thousand crores annually. Media organization is now looking to optimize its reach across platforms such as newspaper, T.V., IPTV, Radio, Internet and Mobile. As converging media (Cross Media) content involves more than one platform, so it has a high demand of multi-skilled media persons.</p><p>The Centre prepares students for employment in the media industry. The courses has been designed for the real world of contemporary media. Students will work with industry-standard equipment gaining skills in media production (print, broadcast and online), research, communication, reporting and media handling. We believe that a combination of writing and production skills either in print, television or radio; a broad understanding of the media and the ability to think critically are essential for people who are planning careers in the rapidly evolving media industry.</p><h4>OBJECTIVES</h4><ul><li>To prepare students for the Indian media industry. </li><li>To provide a solid theoretical background in journalism.</li><li>To provide a practical exposure in Journalism for print & electronic media.</li><li>To provide a set of ethics for them to imbibe.</li><li>To provide a marketing orientation to them.</li></ul><h4>SCOPE OF EMPLOYMENT</h4><p>Students can opt for career in print, electronic, broadcast (radio) and web media as well as in field of public relation and advertisement.</p><h4>FACILITIES</h4><h5>Photography Lab:</h5><p>Film cameras, Digital cameras of various range and qualities, Photo scanner, Laser printer, Fully equipped dark-room, Well equipped studio with studio light system.</p><h5>Videography & Editing Lab:</h5><p> Cameras: Five DV cameras</p> <p>HDV camera Editing Systems: Mac Platform, also Pinnacle Liquid Edition, Pinnacle Studio, Hi-end Computers, Acaustic system and other accessories of Videography.</p><h5>Computer Lab:</h5><p>The Centre has well equipped lab with Video editing, Photo editing, Page making & designing software.</p><h5>Media Research Cell:</h5><p>The Centre has well equipped Media Research Cell. Within Research Cell a diverse group of scholars and students is researching and debating questions of media history; media policy, technologies and practice; literary and cultural history; politics and power and new media developments.</p><h5>Library:</h5><p>The Centre has rich repository of books and journals.</p>"
}
]
Pages.insertMany(seedPages)
.then(res => {
})
.catch(err => {
console.log(err)
})
const seedStaffs =[
{
name: 'Dummy Staff name 1',
designation: 'this is designation of staff 1',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of staff 1',
photo: 'img-1683245811549.jpg',
centreCode: 'cms'
},
{
name: 'Dummy Staff name 2',
designation: 'this is designation of staff 2',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of staff 2',
photo: 'img-1683245811549.jpg',
centreCode: 'cms'
},
{
name: 'Dummy Staff name 3',
designation: 'this is designation of staff 3',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of staff 3',
photo: 'img-1683245811549.jpg',
centreCode: 'cms'
},
{
name: 'Dummy Staff name 4',
designation: 'this is designation of staff 4',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of staff 4',
photo: 'img-1683245811549.jpg',
centreCode: 'cms'
},
{
name: 'Dummy Staff name 5',
designation: 'this is designation of staff 5',
emailId: 'gg.gg@gmail.com/',
education: 'this is education of staff 5',
photo: 'img-1683245811549.jpg',
centreCode: 'cms'
}
]
Staffs.insertMany(seedStaffs)
.then(res => {
})
.catch(err => {
console.log(err)
})
const seedStudents =[
{
name: 'Dummy Student name 1',
semster: '1',
enrollmentNumber: 'u1',
centreCode: "cce",
address: "dummy address",
doa: "2023-01-01",
dob: "2000-01-01",
phoneNumber: "1234567890"
},
{
name: 'Dummy Student name 2',
semster: '2',
enrollmentNumber: 'u2',
centreCode: "cft",
address: "dummy address",
doa: "2023-01-01",
dob: "2000-01-01",
phoneNumber: "1234567890"
},
{
name: 'Dummy Student name 3',
semster: '3',
enrollmentNumber: 'u3',
centreCode: "cfdt",
address: "dummy address",
doa: "2023-01-01",
dob: "2000-01-01",
phoneNumber: "1234567890"
},
{
name: 'Dummy Student name 4',
semster: '4',
enrollmentNumber: 'u4',
centreCode: "cms",
address: "dummy address",
doa: "2023-01-01",
dob: "2000-01-01",
phoneNumber: "1234567890"
},
{
name: 'Dummy Student name 5',
semster: '5',
enrollmentNumber: 'u5',
centreCode: "cce",
address: "dummy address",
doa: "2023-01-01",
dob: "2000-01-01",
phoneNumber: "1234567890"
}
]
Students.insertMany(seedStudents)
.then(res => {
})
.catch(err => {
console.log(err)
})