-
Notifications
You must be signed in to change notification settings - Fork 47
/
index.js
60 lines (46 loc) · 1.6 KB
/
index.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
// adding comment
import mongoose from 'mongoose';
import util from 'util';
import AirbrakeClient from 'airbrake-js';
import makeErrorHandler from 'airbrake-js/dist/instrumentation/express';
// config should be imported before importing any other file
import config from './config/config';
import app from './config/express';
const debug = require('debug')('express-mongoose-es6-rest-api:index');
// make bluebird default Promise
Promise = require('bluebird'); // eslint-disable-line no-global-assign
// plugin bluebird promise in mongoose
mongoose.Promise = Promise;
// connect to mongo db
let mongoUri = config.mongo.host;
if (config.env === 'test') {
mongoUri = config.mongo.test;
}
mongoose.connect(mongoUri, {
keepAlive: true,
reconnectTries: Number.MAX_VALUE,
useMongoClient: true,
});
mongoose.connection.on('error', () => {
throw new Error(`unable to connect to database: ${mongoUri}`);
});
// print mongoose logs in dev env
if (config.MONGOOSE_DEBUG) {
mongoose.set('debug', (collectionName, method, query, doc) => {
debug(`${collectionName}.${method}`, util.inspect(query, false, 20), doc);
});
}
// module.parent check is required to support mocha watch
// src: https://github.com/mochajs/mocha/issues/1912
if (!module.parent) {
const airbrake = new AirbrakeClient({
projectId: 186736,
projectKey: 'ebfbb905ffdbcd115abddd5895cc13c7'
});
app.use(makeErrorHandler(airbrake));
// listen on port config.port
app.listen(config.port, () => {
console.info(`server started on port ${config.port} (${config.env})`); // eslint-disable-line no-console
});
}
export default app;