mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-14 10:11:00 +00:00
14 lines
332 B
Python
14 lines
332 B
Python
from settings import *
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
|
|
|
try:
|
|
INSTALLED_APPS.append('captcha')
|
|
INSTALLED_APPS.append('fobi.contrib.plugins.form_elements.security.recaptcha')
|
|
except Exception as e:
|
|
pass
|
|
|
|
#RECAPTCHA_PUBLIC_KEY = ''
|
|
#RECAPTCHA_PRIVATE_KEY = ''
|
|
RECAPTCHA_USE_SSL = True
|
|
#FOBI_DEFAULT_THEME = 'simple'
|