Skip to content

Commit

Permalink
checked out www.biwascheme.org.js from branch 'website'
Browse files Browse the repository at this point in the history
  • Loading branch information
Yutaka HARA committed Dec 7, 2011
1 parent 734c9be commit b01a3df
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions www.biwascheme.org.js
@@ -0,0 +1,19 @@
#!/usr/bin/env node
var express = require('express'),
app = require('express').createServer(),
fs = require('fs');

app.configure(function(){
app.use(express.static(__dirname + '/web'));
//app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});

//app.get('/', function(req, res){
// res.send('hello world');
//});

var port = process.env.PORT || 7001;
app.listen(port, function(){
console.log("Listening on " + port);
});

0 comments on commit b01a3df

Please sign in to comment.