-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
36 lines (28 loc) · 1.18 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
const express = require("express");
const bodyParser = require("body-parser");
const path = require("path");
const app = express();
// Set up routes
const getPopularMovies = require("./routes/api/getPopularMovies");
const getConfiguration = require("./routes/api/getConfiguration");
const getMoviesSearch = require("./routes/api/getMoviesSearch");
const getSingleMovie = require("./routes/api/getSingleMovie");
// Body Parser Middleware
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
// Routes
app.use("/api/getPopularMovies", getPopularMovies);
app.use("/api/getConfiguration", getConfiguration);
app.use("/api/getMoviesSearch", getMoviesSearch);
app.use("/api/getSingleMovie", getSingleMovie);
// Setting up local and live server configuration
const port = process.env.PORT || 5000;
if (process.env.NODE_ENV === "production") {
// Serve any static files
app.use(express.static(path.join(__dirname, "client/build")));
// Handle React routing, return all requests to React app
app.get("*", function (req, res) {
res.sendFile(path.join(__dirname, "client/build", "index.html"));
});
}
app.listen(port, () => console.log(`Listening on port ${port}`));