-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
62 lines (47 loc) · 2.09 KB
/
index.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
const express = require("express");
const cookieParser = require('cookie-parser')
const app = express();
const path = require('path');
const hbs = require('hbs');
const mongoose = require("mongoose")
const bodyParser = require("body-parser")
const dotenv = require("dotenv").config()
const fs = require("fs")
const port = process.env.PORT || 7070
app.use(cookieParser())
app.use(express.json());
app.use(express.urlencoded({ extended: true }))
app.use("/uploads", express.static('uploads'))
// use static file presents in public folder..................
const staticPath = path.join(__dirname, "/public")
app.use(express.static(staticPath));
//set view engine ex - (hbs, pug, ejs).....................
app.set('view engine', 'hbs');
// set the actual location of views folder.................
app.set('views', path.join(__dirname, "/templates/views"));
// databse connection
const dbURI = require('./DB/dbConnection')
// importing routes from router folder
const indexRoutes = require("./router/indexRoutes")
const stdUndertakingRoutes = require("./router/studentUndertakingRoutes")
const feesUndertakingRoutes = require("./router/feesUndertakingRoutes")
const idcardRoutes = require("./router/idCardRoutes");
const userSignup = require("./router/signupRoutes");
const userlogin = require("./router/loginRoutes")
// middleware
const {loggedinUserOnly} = require('./middleware/authMiddlewares')
//using routes here
app.use("/", indexRoutes);
app.use("/studentUndertaking", loggedinUserOnly, stdUndertakingRoutes)
app.use("/feesundertaking", loggedinUserOnly, feesUndertakingRoutes)
app.use("/idcard", loggedinUserOnly, idcardRoutes)
app.use("/signup", userSignup)
app.use("/login", userlogin)
// default route for if anyone want to access another page beyond the existing pages then this will open 404 page!
app.get("/*", (req, res) => {
res.render('Invalid')
})
// Listening page on port
app.listen(port, (req, res) => {
console.log(`Server is started click on http://localhost:${port}`)
});