From f08d80585a95abc3cc6a9e56addc7aa549b87a6d Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Tue, 5 Sep 2017 09:10:28 +0200 Subject: [PATCH] Update env variables for the heroku deployment --- app.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app.json b/app.json index 05c00770c..ce9d569a3 100644 --- a/app.json +++ b/app.json @@ -15,12 +15,15 @@ "test": "phpunit" }, "env": { - "SYMFONY_ENV": { + "APP_ENV": { "value": "prod", "description": "If you want to use the Symfony `dev` environment in the deployed application, you must move the necessary dependencies (like SensioGeneratorBundle) from `require-dev` to `require`. This will introduce security issues because development tools like the WebProfiler reveal sensitive information." }, + "APP_DEBUG": { + "value": "0" + } "SYMFONY_LOG": "php://stderr", - "SYMFONY_SECRET": { + "APP_SECRET": { "description": "Extra entropy for %kernel.secret%; used for CSRF tokens, cookies and signed URLs.", "generator": "secret" }