Not got github

This commit is contained in:
David Banham 2012-08-15 18:57:48 +10:00
parent b27f21e527
commit 7bae522488
1 changed files with 6 additions and 0 deletions

View File

@ -32,6 +32,12 @@ app.configure(function() {
app.get("/", function(req, res) {
fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
});
app.get("/fixed.html", function(req, res) {
fs.createReadStream(opts.baseDir + '/fixed.html').pipe(res);
});
app.get("/fixedmaster.html", function(req, res) {
fs.createReadStream(opts.baseDir + '/fixedmaster.html').pipe(res);
});
app.get("/token", function(req,res) {
var ts = new Date().getTime();