diff options
author | Ismael Carnales <icarnales@gmail.com> | 2009-11-12 22:34:08 -0200 |
---|---|---|
committer | Ismael Carnales <icarnales@gmail.com> | 2009-11-12 22:34:08 -0200 |
commit | f7b879940b9b863d3ef52ce7082f3126d6af88c6 (patch) | |
tree | 81473f004b1dc9be7f3aa34c3b4018803b581312 | |
parent | 6a11b8446354c927a27b2d81ed5022fb78fd3eaf (diff) |
added dummy cache setting to local_settings
-rw-r--r-- | local_settings.py.example | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/local_settings.py.example b/local_settings.py.example index d6358eeb..521e0ae2 100644 --- a/local_settings.py.example +++ b/local_settings.py.example @@ -29,5 +29,9 @@ MEDIA_URL = 'http://www.archlinux.org/img/' ## Make this unique, and don't share it with anybody. SECRET_KEY = '00000000000000000000000000000000000000000000000' +#dummy cache +if DEBUG: + CACHE_BACKEND = 'dummy:///' + # vim: set ts=4 sw=4 et: |