Skip to content

Instantly share code, notes, and snippets.

@elliotttf
Created October 18, 2012 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elliotttf/3914051 to your computer and use it in GitHub Desktop.
Save elliotttf/3914051 to your computer and use it in GitHub Desktop.
diff --git a/app.js b/app.js
index 6009506..6f050ff 100644
--- a/app.js
+++ b/app.js
@@ -4,32 +4,25 @@
*/
var express = require('express')
- , routes = require('./routes')
- , user = require('./routes/user')
, http = require('http')
- , path = require('path');
+ , path = require('path')
+ , config = require('./config');
var app = express();
app.configure(function(){
- app.set('port', process.env.PORT || 3000);
- app.set('views', __dirname + '/views');
- app.set('view engine', 'jade');
- app.use(express.favicon());
+ app.set('port', config.port);
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
- app.use(express.static(path.join(__dirname, 'public')));
+ app.use(express.static(path.join(__dirname, 'client')));
});
app.configure('development', function(){
app.use(express.errorHandler());
});
-app.get('/', routes.index);
-app.get('/users', user.list);
-
http.createServer(app).listen(app.get('port'), function(){
console.log("Express server listening on port " + app.get('port'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment