aboutsummaryrefslogtreecommitdiff
path: root/src/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap.py')
-rw-r--r--src/bootstrap.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bootstrap.py b/src/bootstrap.py
index f1624111..6d76d58f 100644
--- a/src/bootstrap.py
+++ b/src/bootstrap.py
@@ -49,10 +49,6 @@ application.config['SECURITY_PASSWORD_SALT'] = getattr(conf,
if not application.config['SECURITY_PASSWORD_SALT']:
application.config['SECURITY_PASSWORD_SALT'] = os.urandom(12)
-application.config['RECAPTCHA_USE_SSL'] = True
-application.config['RECAPTCHA_PUBLIC_KEY'] = conf.RECAPTCHA_PUBLIC_KEY
-application.config['RECAPTCHA_PRIVATE_KEY'] = conf.RECAPTCHA_PRIVATE_KEY
-
db = SQLAlchemy(application)
def populate_g():
bgstack15