From 48c1ee3e6026a9fa1e52e51ab72ea6fa98d06185 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Thu, 29 Jan 2015 13:33:23 +0000 Subject: [PATCH] Fix default APP_DEBUG --- app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.json b/app.json index 11ecc89a..2fd69c64 100644 --- a/app.json +++ b/app.json @@ -17,7 +17,7 @@ "env": { "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." } + "APP_DEBUG": { "value": "false", "description": "Toggle Cachet debugging." } }, "scripts": { "postdeploy": "php artisan migrate --env=heroku; php artisan key:generate;"