breaking heroku

master
Matthew Huntington 10 years ago
parent 0a9e253282
commit 8038db7d63

@ -15,5 +15,8 @@
"bugs": { "bugs": {
"url": "https://github.com/mahuntington/herokutest/issues" "url": "https://github.com/mahuntington/herokutest/issues"
}, },
"homepage": "https://github.com/mahuntington/herokutest#readme" "homepage": "https://github.com/mahuntington/herokutest#readme",
"dependencies": {
"express": "^4.14.0"
}
} }

@ -0,0 +1,10 @@
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.send('works');
})
app.listen(3000, function(){
console.log('listening on port ' + process.env.PORT);
})
Loading…
Cancel
Save