Skip to content

Commit

Permalink
Adding some color to the-node-kushes.no.de
Browse files Browse the repository at this point in the history
  • Loading branch information
rafacv committed Aug 28, 2010
1 parent a86fb76 commit 90dd152
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pagetalk.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,14 @@ app.get('/', function(req, res){
res.render('index.html', {'locals': {'times': 10}});
});

app.listen(3000);
app.listen(3000);

// boilerplate
app_boiler = express.createServer();

app_boiler.get('/', function(req, res){
res.send('git.init();<br><br>while (true) {<br>&nbsp;&nbsp;git.commit();<br>}');
});

//app.listen(3000);
app_boiler.listen(80)

0 comments on commit 90dd152

Please sign in to comment.