-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
77 lines (65 loc) · 2.56 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
74
75
76
77
process.on('uncaughtException', function (exception) {
console.log(exception); // to see your exception details in the console
// if you are on production, maybe you can send the exception details to your
// email as well ?
});
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var cors = require('cors');
var app = express();
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(logger('dev'));
//app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
app.use(cors());
//var index = require('./routes/index');s
var users = require('./user/user.router');
var locations = require('./location/location.router');
var trips = require('./trip/trip.router');
//var tripPrefences = require('./trip-prefences/trip-prefences.router');
//app.use('/', index);
app.use('/user', users);
app.use('/location', locations);
app.use('/trip', trips);
//app.use('/trip-prefences', tripPrefences);
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handler
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 page
res.status(err.status || 500);
});
app.listen(5858, function () {
console.log('-----------------------------------------')
console.log('--------BesTrip Server is now up---------')
console.log('-----------------------------------------')
// Setting the env var
// Checking the env vars
if(process.env.MONGO_CONN_STR === undefined ||
process.env.GGL_CITIES_API_ADDR === undefined ||
process.env.GGL_SITES_API_ADDR === undefined ||
process.env.GGL_API_KEY === undefined )
{
console.log ("env vars are missing!");
process.env.MONGO_CONN_STR = "mongodb://admin:[email protected]:37530/bestrip";
process.env.GGL_CITIES_API_ADDR ="https://maps.googleapis.com/maps/api/place/autocomplete/json";
process.env.GGL_API_KEY = "AIzaSyCZfV1JbQ6R4URxw3XPQAMyQrGhfNUoTTw";
process.env.GGL_SITES_API_ADDR = "https://maps.googleapis.com/maps/api/place/details/json"
}
})
module.exports = app;