-
Notifications
You must be signed in to change notification settings - Fork 490
/
balloons.js
68 lines (49 loc) · 1.02 KB
/
balloons.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
/*
* Module dependencies
*/
var express = require('express')
, init = require('./init')
/*
* Create and config server
*/
var app = exports.app = express();
/**
* Configure application
*/
require('./config')(app);
/*
* Clean db and create folder
*/
// init(app.get('redisClient'));
/*
* Passportjs auth strategy
*/
require('./strategy')(app);
/*
* Routes
*/
require('./routes')(app);
/*
* Web server
*/
if(app.get('config').credentials) {
exports.server = require('https')
.createServer(app.get('config').credentials, app).listen(app.get('port'), function() {
console.log('Balloons.io started on port %d', app.get('port'));
});
} else {
exports.server = require('http')
.createServer(app).listen(app.get('port'), function() {
console.log('Balloons.io started on port %d', app.get('port'));
});
}
/*
* Socket.io
*/
require('./sockets')(app, exports.server);
/*
* Catch uncaught exceptions
*/
process.on('uncaughtException', function(err){
console.log('Exception: ' + err.stack);
});