-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
73 lines (53 loc) · 1.74 KB
/
app.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
70
71
72
73
const express = require('express');
const hbs = require('hbs');
const path = require('path');
const mongoose = require('mongoose');
const bodyParser = require('body-parser');
require('dotenv').config();
const app = express();
//deploy area
// app.set('view engine', 'hbs');
// app.set('views', __dirname + '/views');
app.use(express.static(path.join(__dirname, 'public')));
app.use(express.static(path.join(__dirname, 'public/build')));
app.use(bodyParser.json()); //here
// mongo db atlas - with the [email protected] account
// mongoose.Promise = global.Promise;
mongoose
.connect(process.env.MONGODB_URI, { useNewUrlParser: true })
.then(x => {
console.log(`Connected to Mongo! Database name: "${x.connections[0].name}"`)
})
.catch(err => {
console.error('Error connecting to mongo', err)
});
// const { NODE_ENV = 'production' } = process.env;
// const IN_PROD = NODE_ENV === 'production';
/*Get movies page */
const moviesP = require('./routes/movies');
app.use('/', moviesP);
/*Get singe movie page */
const movieP = require('./routes/movie');
app.use('/', movieP);
//upload router
app.use('/', require('./routes/upload'));
//production mode
if (process.env.NODE_ENV === 'production') {
// Set static folder
app.use(express.static('client/build'));
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'));
});
}
const port = process.env.PORT || 5000;
app.listen(port, () => {
console.log(`Server started on port ${port} ....Happy Surfing`);
});
//close mongodb
process.on('SIGINT', function () {
mongoose.connection.close(function () {
console.log('Mongoose disconnected on app termination');
process.exit(0);
});
});
module.exports = app;