Created
January 28, 2013 14:39
-
-
Save simonrw/4656012 to your computer and use it in GitHub Desktop.
Raspberry pi server code
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' | |
http = require 'http' | |
path = require 'path' | |
app = express() | |
public_path = path.join __dirname, 'public' | |
app.configure -> | |
app.set 'port', process.env.PORT || 3000 | |
app.set 'views', __dirname + '/views' | |
app.set 'view engine', 'jade' | |
app.use express.logger 'dev' | |
app.use express.bodyParser() | |
app.use express.methodOverride() | |
app.use app.router | |
app.use express.static public_path | |
app.use express.errorHandler() | |
app.get '/', (req, res) -> | |
res.render 'index', { title: 'Circularspace' } | |
app.listen(app.get('port'), -> | |
console.log 'Express server listening' | |
) | |
console.log 'Ready' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment