diff --git a/app.json b/app.json index 63ff62b..7ab48e9 100644 --- a/app.json +++ b/app.json @@ -4,5 +4,6 @@ "env":{}, "addons":[ "heroku-postgresql" - ] -} \ No newline at end of file + ], + "buildpacks": [ "https://github.com/mcollina/heroku-buildpack-graphicsmagick.git", "heroku/nodejs" ] +} diff --git a/routes/index.js b/routes/index.js index 708efa5..e4a974a 100644 --- a/routes/index.js +++ b/routes/index.js @@ -3,7 +3,7 @@ var router = express.Router(); /* GET home page. */ router.get('/', function(req, res, next) { - res.render('index', { title: 'Foobar' }); + res.render('index', { title: 'Should-rebuild' }); }); module.exports = router;