-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
30 lines (22 loc) · 779 Bytes
/
app.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
require('dotenv').config();
const express = require('express');
const app = express();
const path = require('path');
const Chapter = require('./models/Chapter');
const chapterRoute = require('./routers/chapter');
const studentRoute = require('./routers/student');
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.use(express.static(path.join(__dirname, 'views')));
app.use('/chapters', chapterRoute);
app.use('/student', studentRoute);
app.get('/', (req, res) => {
res.render('index.html');
});
app.get('/teacher', async (req, res) => {
const chapters = await Chapter.find().exec();
res.render('teacher/index.ejs', { chapters });
});
module.exports = app;