-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
56 lines (48 loc) · 1.52 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
const path = require('path'),
express = require('express'),
bodyParser = require('body-parser'),
mongoose = require('mongoose'),
config = require('./config/database');
require('dotenv').config();
const app = express();
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
app.use(express.static(__dirname + '/public'));
app.use('/images', express.static('./images'));
app.use(express.static(__dirname + '/src')); // Allow front end to access public folder
if(process.env.NODE_ENV === 'production'){
mongoose.connect(config.database);
} else {
mongoose.connect('mongodb://localhost/test');
mongoose.set('debug', true);
}
require('./models/User');
require('./models/Review');
require('./models/Tutorial');
require('./models/Step');
require('./models/Image');
require('./config/passport');
app.use(require('./routes'));
/// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.json({'errors': {
message: err.message,
error: {}
}});
});
// Set Application Static Layout
app.get('*', function(req, res) {
res.sendFile(path.join(__dirname + '/src/index.html')); // Set index.html as layout
});
// finally, let's start our server...
var server = app.listen( process.env.PORT || 3000, function(){
console.log('Listening on port ' + server.address().port);
});