Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
arlolra committed Sep 19, 2011
0 parents commit c25a232
Show file tree
Hide file tree
Showing 6 changed files with 3,108 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/routes.js
@@ -0,0 +1,9 @@
module.exports = function (app) {

app.get('/', function (req, res) {

res.send('hey')

})

}
18 changes: 18 additions & 0 deletions package.json
@@ -0,0 +1,18 @@
{
"author" : "Arlo Breault <arlolra@gmail.com>"
, "name" : "herder"
, "version" : "0.0.1"
, "homepage" : "http://thoughtherder.com"
, "repository" : {
"type" : "git"
, "url" : "git@github.com:arlolra/herder.git"
}
, "main" : "server.js"
, "engines" : {
"node" : "0.4.x"
}
, "dependencies" : {
"express" : "2.4.x"
, "redis" : "0.6.x"
}
}

0 comments on commit c25a232

Please sign in to comment.