-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
38 lines (27 loc) · 881 Bytes
/
server.js
File metadata and controls
38 lines (27 loc) · 881 Bytes
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
const express = require('express');
const morgan = require('morgan');
const dotenv = require('dotenv');
const connectDB = require('./config/db');
const path = require('path')
// configure the dotenv
dotenv.config();
// mongoDB connection
connectDB();
// rest Object
const app = express();
// middlewares
app.use(express.json());
app.use(morgan('dev'));
// routes
app.use('/api/v1/user', require('./routes/userRoutes'));
app.use('/api/v1/admin', require('./routes/adminRoutes'))
app.use('/api/v1/doctor', require('./routes/doctorRoutes'))
app.use(express.static(path.join(__dirname, './client/build')))
app.get('*', function(req,res){
res.sendFile(path.join(__dirname, './client/build/index.html'))
})
// listen port
const port = process.env.PORT || 8080;
app.listen(port, ()=>{
console.log(`Server is running in ${process.env.DEV_MODE} Mode on port ${port}`);
})