-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
64 lines (55 loc) · 1.63 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
63
64
"use strict";
/* -------------------------------------------------------
BLOG API PROJECT WITH MONGOOSE
------------------------------------------------------- */
const express = require("express");
const app = express();
// env configs
require("dotenv").config();
const PORT = process.env.PORT;
const HOST = process.env.HOST;
// db connection import
const { dbConnection } = require("./src/configs/dbConnection");
dbConnection();
/** DOCUMMENTATION */
// ? Json
app.use("/documents/json", (req, res) => {
res.sendFile("swagger.json", { root: "." });
});
// ? Swagger
const swaggerUi = require("swagger-ui-express");
const swaggerJson = require("./swagger.json");
app.use(
"/documents/swagger",
swaggerUi.serve, //? start the system
swaggerUi.setup(swaggerJson, { //? import the json file and configure the token
swaggerOptions: { persistAuthorization: true },
})
);
// ? Redoc
const redoc= require("redoc-express")
app.use("/documents/redoc",
redoc({
title:"Blog API",
specUrl:"/documents/json"
})
)
/* MIDDLEWARES */
// to json
app.use(express.json());
// logging
app.use(require("./src/middlewares/logging"));
app.use(require("./src/middlewares/authentication"));
app.use(require("./src/middlewares/findSearchSortPage"));
app.use(require("./src/routes/index"));
/* Routes */
app.all("/", (req, res) => {
res.send({
error: false,
message: "WELCOME BLOG API PROJECT",
user: req.user,
});
});
// error-handler
app.use(require("./src/middlewares/errorHandler"));
app.listen(PORT, () => console.log(`Server Running on http://${HOST}:${PORT}`));