diff --git a/.gitignore b/.gitignore index 9d8ea161..9ae94cbf 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ _build /.cache/ /etc/ssl /__version__/ +/tmp diff --git a/normandy/settings.py b/normandy/settings.py index 5668fa33..78f1c53d 100644 --- a/normandy/settings.py +++ b/normandy/settings.py @@ -84,6 +84,7 @@ class Base(Core): ALLOWED_HOSTS = values.ListValue([]) DATABASES = values.DatabaseURLValue('postgres://postgres@localhost/normandy') ADMINS = values.SingleNestedListValue([]) + STATICFILES_STORAGE = values.Value('whitenoise.django.GzipManifestStaticFilesStorage') EMAIL_HOST_USER = values.Value() EMAIL_HOST = values.Value() @@ -146,7 +147,6 @@ class Development(Base): class Production(Base): """Settings for the production environment.""" - STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage' class Test(Base):