summaryrefslogtreecommitdiffstats
path: root/settings_local.py.dist
diff options
context:
space:
mode:
authorhrcerqueira <hrcerqueira@gmail.com>2010-03-04 21:40:08 +0000
committerhrcerqueira <hrcerqueira@gmail.com>2010-03-04 21:40:08 +0000
commit0d1d1ef3a3416b5bcd4eb867356484b28f0c7f05 (patch)
tree461c96999ee24b5dcb42b5efa649dcea5f4a2cdf /settings_local.py.dist
parentf582a06a4dcd03c180dfcc52c5bfcdbb900e4623 (diff)
downloadaskbot-0d1d1ef3a3416b5bcd4eb867356484b28f0c7f05.tar.gz
askbot-0d1d1ef3a3416b5bcd4eb867356484b28f0c7f05.tar.bz2
askbot-0d1d1ef3a3416b5bcd4eb867356484b28f0c7f05.zip
Started implementing cache.
Added placeholders in log folder, and the new cache folder so git wont ignore them.
Diffstat (limited to 'settings_local.py.dist')
-rwxr-xr-xsettings_local.py.dist6
1 files changed, 5 insertions, 1 deletions
diff --git a/settings_local.py.dist b/settings_local.py.dist
index 3169e940..a27946af 100755
--- a/settings_local.py.dist
+++ b/settings_local.py.dist
@@ -36,7 +36,11 @@ DATABASE_ENGINE = '' #mysql, etc
DATABASE_HOST = ''
DATABASE_PORT = ''
-#Moved from settings.py for better organization. (please check it up to clean up settings.py)
+#set this value to 'dummy://' if you don't want to use cache, or set up your favourite caching mechanism
+#see http://docs.djangoproject.com/en/1.1/topics/cache/ for details
+#example (set local file system cache in a cache folder in the root of the osqa install):
+#CACHE_BACKEND = 'file://%s' % os.path.join(os.path.dirname(__file__),'cache').replace('\\','/')
+CACHE_BACKEND = 'dummy://'
#email server settings
SERVER_EMAIL = ''