+
+PAYPAL_CONFIG = {
+ 'mode': 'sandbox', # sandbox or live
+ 'client_id': '',
+ 'client_secret': '',
+}
+
+REST_FRAMEWORK = {
+ "DEFAULT_RENDERER_CLASSES": (
+ 'rest_framework.renderers.JSONRenderer',
+ 'rest_framework.renderers.BrowsableAPIRenderer',
+ 'api.renderers.LegacyXMLRenderer',
+ ),
+ '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',
+ },
+}
+
+
+FORMS_BUILDER_USE_SITES = False
+FORMS_BUILDER_EDITABLE_FIELD_MAX_LENGTH = True
+FORMS_BUILDER_EDITABLE_SLUGS = True
+FORMS_BUILDER_EXTRA_FIELDS = [
+ (100, 'contact.fields.HeaderField', 'Header'),
+ (101, 'contact.fields.SeparatorField', 'Separator'),
+]
+FORMS_BUILDER_HELPTEXT_MAX_LENGTH = 2048
+FORMS_BUILDER_REQUIRED_CSS_CLASS = 'required'