-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
69 lines (55 loc) · 1.72 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
const express = require("express");
const logger = require("morgan");
const mongoose = require("mongoose");
const cors = require("cors");
const path = require("path");
const PORT = process.env.PORT || 8080;
mongoose.connect(
process.env.MONGODB_URI || "mongodb://localhost/curbside_restaurantsdb", //needs to have the same name in
{
useNewUrlParser: true,
useUnifiedTopology: true,
}
);
const app = express();
app.use(cors());
app.use(logger("dev"));
const apiRoutes = require("./routes/api");
const htmlRoutes = require("./routes/html-routes");
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
//use public or client build
// app.use(express.static("public"));
// app.use(express.static("./client/public"));
if (process.env.NODE_ENV === "production") {
//for when connected in Heroku
app.use(express.static("client/build"));
}
//functions for routes imported here, should update with routes folder
//app.use("/", htmlRoutes);
app.use("/api", apiRoutes);
app.get("*", (req, res) => {
res.sendFile(path.join(__dirname, "./client/build/index.html"));
});
// catch 404 and forward to error handler
app.use(function (req, res, next) {
let err = new Error("Not Found");
error.status = 404;
next(err);
//next(createError(404));
});
// error handler middleware
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get("env") === "development" ? err : {};
// render the error message
res.status(err.status || 500).json({
error: {
message: err.message || "Oops! Something went wrong!",
},
});
});
app.listen(PORT, () => {
console.log(`App running on port ${PORT}!`);
});