),
'DEFAULT_AUTHENTICATION_CLASSES': (
'api.drf_auth.PistonOAuthAuthentication',
+ 'rest_framework.authentication.SessionAuthentication',
)
}
+
+
+DEBUG_TOOLBAR_CONFIG = {
+ 'RESULTS_CACHE_SIZE': 100,
+}
+
+
+HAYSTACK_CONNECTIONS = {
+ 'default': {
+ 'ENGINE': 'haystack.backends.simple_backend.SimpleEngine',
+ },
+}