Created
May 27, 2011 05:03
-
-
Save GeorgeErickson/994676 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
express = require('express') | |
app = module.exports = express.createServer() | |
app.configure = -> | |
app.set 'views', __dirname + '/views' | |
app.set 'view engine', 'jade' | |
app.use express.bodyParser() | |
app.use express.methodOverride() | |
app.use express.compiler({ src: __dirname + '/public', enable: ['less'] }) | |
app.use app.router | |
app.use express.static(__dirname + '/public') | |
app.configure 'development', () -> | |
app.use express.errorHandler | |
dumpExceptions: true | |
showStack: true | |
app.configure 'production', () -> | |
app.use express.errorHandler | |
######################################## | |
#Routes | |
######################################## | |
app.get '/', (req, res) -> | |
res.render 'index', | |
title: 'Express' | |
######################################## | |
#app | |
######################################## | |
if not module.parent | |
app.listen 3000 | |
console.log "Express server listening on port %d", app.address().port |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment