mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-03-01 09:50:39 +03:00
Heroku caching only in production
This commit is contained in:
parent
cd62e9333e
commit
bca3f53b6d
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user