nodejs app started

This commit is contained in:
2015-03-23 13:15:28 -04:00
parent e4a297a28d
commit 6e43cdf6a0
7 changed files with 87 additions and 0 deletions

5
routes/index.js Normal file
View File

@@ -0,0 +1,5 @@
module.exports = function(db) {
return function (req, res) {
res.render('index');
}
}