From 6ef60301d10589c96c8402dfd72c2e38826d30a3 Mon Sep 17 00:00:00 2001 From: Julian Andres Cantillo Date: Thu, 18 Feb 2016 15:21:47 -0500 Subject: [PATCH] Added NEW_RELIC_APP_NAME env var for app.json When using the one-click deployment to Heroku the building process fails if the app uses NewRelic. --- {{cookiecutter.repo_name}}/app.json | 1 + 1 file changed, 1 insertion(+) diff --git a/{{cookiecutter.repo_name}}/app.json b/{{cookiecutter.repo_name}}/app.json index 495770c7..078f87ea 100644 --- a/{{cookiecutter.repo_name}}/app.json +++ b/{{cookiecutter.repo_name}}/app.json @@ -22,6 +22,7 @@ "DJANGO_MAILGUN_SERVER_NAME": "", {% if cookiecutter.use_newrelic == "y" -%} "NEW_RELIC_LICENSE_KEY": "", + "NEW_RELIC_APP_NAME": "", {%- endif %} "DJANGO_MAILGUN_API_KEY": ""{% if cookiecutter.use_sentry == "y" -%}, "DJANGO_SENTRY_DSN": ""{%- endif %}