Merge pull request #8 from Bouke/patch-2

Heroku caching only in production
This commit is contained in:
Daniel Greenfeld 2013-08-28 04:47:22 -07:00
commit ce98a8f6f2

View File

@ -287,6 +287,12 @@ else:
EMAIL_USE_TLS = True
SERVER_EMAIL = EMAIL_HOST_USER
########## END EMAIL
########## CACHING
from memcacheify import memcacheify
CACHES = memcacheify()
########## END CACHING
########## TEMPLATE CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#template-context-processors
@ -357,11 +363,6 @@ LOGGING = {
}
########## END LOGGING CONFIGURATION
########## CACHING
from memcacheify import memcacheify
CACHES = memcacheify()
########## END CACHING
########## Your stuff: Below this line define 3rd party libary settings