2019-10-07 15:33:48 +01:00
|
|
|
"""passbook captcha_factor settings"""
|
|
|
|
# https://developers.google.com/recaptcha/docs/faq#id-like-to-run-automated-tests-with-recaptcha.-what-should-i-do
|
2018-12-14 12:51:12 +00:00
|
|
|
RECAPTCHA_PUBLIC_KEY = '6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI'
|
|
|
|
RECAPTCHA_PRIVATE_KEY = '6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe'
|
2019-10-07 15:33:48 +01:00
|
|
|
|
2018-12-14 12:51:12 +00:00
|
|
|
NOCAPTCHA = True
|
|
|
|
INSTALLED_APPS = [
|
|
|
|
'captcha'
|
|
|
|
]
|
2019-02-08 13:57:59 +00:00
|
|
|
SILENCED_SYSTEM_CHECKS = ['captcha.recaptcha_test_key_error']
|