From 63a9b72ca39cc775926aeb36a473b0d174d8da82 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Thu, 29 Jan 2015 13:22:38 +0000 Subject: [PATCH] Added APP_DEBUG env var to app.json for Heroku --- app.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app.json b/app.json index 10e621d3..11ecc89a 100644 --- a/app.json +++ b/app.json @@ -15,8 +15,9 @@ "heroku-postgresql" ], "env": { - "ENV": { "value": "heroku", "description": "Do not modify this value to work on Heroku" }, - "BUILDPACK_URL": { "value": "https://github.com/cachethq/cachet-buildpack", "description": "Do not modify this value to work on Heroku" } + "ENV": { "value": "heroku", "description": "Do not modify this value as it's required to work on Heroku." }, + "BUILDPACK_URL": { "value": "https://github.com/cachethq/cachet-buildpack", "description": "Do not modify this value as it's required to work on Heroku." }, + "APP_DEBUG": { "value": false, "description": "Toggle Cachet debugging." } }, "scripts": { "postdeploy": "php artisan migrate --env=heroku; php artisan key:generate;"