-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
36 lines (28 loc) · 1.23 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 path = require('path');
const favicon = require('serve-favicon');
const logger = require('morgan');
// connect to the database with Mongoose
require('./server/config/database');
require('dotenv').config()
const app = express();
app.use(logger('dev'));
app.use(express.json());
// Configure both serve-favicon & static middlewares
// to serve from the production 'build' folder
app.use(favicon(path.join(__dirname, 'build', 'favicon.ico')));
app.use(express.static(path.join(__dirname, 'build')));
app.use(require("./server/config/auth")) // auth to be able to grab user on any page - stores decoded token in users req and passed down to req obj
// Put API routes here, before the "catch all" route
app.use('/api/users', require('./server/routes/api/user'));
// The following "catch all" route (note the *)is necessary
// for a SPA's client-side routing to properly work
app.get('/*', function(req, res) {
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
// Configure to use port 3001 instead of 3000 during
// development to avoid collision with React's dev server
const port = process.env.PORT || 3001;
app.listen(port, function() {
console.log(`Express app running on port ${port}`)
});