updated template

This commit is contained in:
Tony Tam
2014-07-04 10:19:28 -07:00
parent 7ab0394e76
commit 256485ec5b
19 changed files with 10313 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
var express = require("express")
var app = express();
var docs_handler = express.static(__dirname + '/docs/');
app.use(docs_handler);
// start the server
app.listen(8002);