forked from gbatra17/VoteMate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
40 lines (35 loc) · 1019 Bytes
/
server.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
const express = require("express");
const cors = require('cors');
const mongoose = require('mongoose');
require('dotenv').config();
const app = express();
const port = process.env.PORT || 5001;
app.use(cors());
app.use(express.json());
const uri = process.env.ATLAS_URI;
mongoose.connect(uri, {
useNewUrlParser: true,
useCreateIndex: true
});
const connection = mongoose.connection;
connection.once('open', () => {
console.log("MongoDB database connection established successfully");
})
app.use(express.static(`${__dirname}/client/build`));
app.get("/health", (req, res) => {
res.send({
health: "UP"
});
});
app.get("/*", function (req, res) {
res.sendFile(`${__dirname}/client/build/index.html`, function (err) {
if (err) {
res.status(500).send(err);
}
});
});
// log your server is running and the port
app.listen(port, () => {
console.log(`Server is running on port ${port}`)
console.log(`Click here to open: http://localhost:${port}`)
});