#342 Add compressor to production settings

This commit is contained in:
andresgz 2016-06-02 14:43:27 -04:00
parent 2e9b4c20a8
commit 7a745d0a43

View File

@ -170,6 +170,13 @@ EMAIL_BACKEND = "anymail.backends.mailgun.MailgunBackend"
NEW_RELIC_LICENSE_KEY = env('NEW_RELIC_LICENSE_KEY')
NEW_RELIC_APP_NAME = env('NEW_RELIC_APP_NAME')
{%- endif %}
# django-compressor
# ------------------------------------------------------------------------------
{% if cookiecutter.use_compressor == 'y'-%}
INSTALLED_APPS += ("compressor", )
{%- endif %}
# TEMPLATE CONFIGURATION
# ------------------------------------------------------------------------------
# See: