From 6699e6d1258a6a4f22eaf6071ab738821ac19d1f Mon Sep 17 00:00:00 2001 From: Jay Date: Sat, 7 Nov 2015 20:18:11 +0100 Subject: [PATCH] added NEW_RELIC_APP_NAME so that it appears on the dashboard --- {{cookiecutter.repo_name}}/config/settings/production.py | 1 + 1 file changed, 1 insertion(+) diff --git a/{{cookiecutter.repo_name}}/config/settings/production.py b/{{cookiecutter.repo_name}}/config/settings/production.py index 0136c01e3..27ba946e4 100644 --- a/{{cookiecutter.repo_name}}/config/settings/production.py +++ b/{{cookiecutter.repo_name}}/config/settings/production.py @@ -132,6 +132,7 @@ EMAIL_SUBJECT_PREFIX = env("DJANGO_EMAIL_SUBJECT_PREFIX", default='[{{cookiecutt SERVER_EMAIL = env('DJANGO_SERVER_EMAIL', default=DEFAULT_FROM_EMAIL) {% if cookiecutter.use_newrelic == 'y'-%} NEW_RELIC_LICENSE_KEY = env('NEW_RELIC_LICENSE_KEY') +NEW_RELIC_APP_NAME = '{{cookiecutter.project_name}}' {%- endif %} # TEMPLATE CONFIGURATION