-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
50 lines (38 loc) · 1.18 KB
/
server.js
File metadata and controls
50 lines (38 loc) · 1.18 KB
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
// Configuration
var server_port = process.env.PORT;
var server_address = process.env.IP;
// MongoDB Configuration
var mongoose = require('mongoose');
mongoose.connect('mongodb://cloud9:cloud9@ds029338.mongolab.com:29338/hw',
function(err) {
if (err) { throw err; }
});
var express = require('express')
, sockio = require('socket.io')
, routes = require('./routes');
var app = module.exports = express.createServer();
// CONFIGURATION
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(require('stylus').middleware({ src: __dirname + '/public' }));
app.use(app.router);
app.use(express.static(__dirname + '/public'));
});
app.configure('development', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function(){
app.use(express.errorHandler());
});
// URLS
app.get('/', routes.index);
// RUN SERVER
var sio = sockio.listen(app);
sio.set('log level', 1);
app.listen(server_port, server_address);
console.log("Express server listening");
//RUN SOCKET.IO
routes.socket(app, sio);