From 5bfa89db5106968fad74423be441ec349ba2b40a Mon Sep 17 00:00:00 2001 From: Andriy Andrusyk Date: Wed, 15 Jul 2015 21:14:32 +0300 Subject: [PATCH] A typo. I placed THREADS_PER_PAGE instead of THREADS_PAGE. --- Large-app-how-to.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Large-app-how-to.md b/Large-app-how-to.md index f24e610..fb87061 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -125,7 +125,7 @@ We'll create 4 modules, a user module (manage user's registration, login, lost p * `SECRET_KEY` will be used to sign cookies. Change it and all your users will have to login again. * `ADMINS` will be used if you need to email information to the site administrators. * `SQLALCHEMY_DATABASE_URI` and `DATABASE_CONNECT_OPTIONS` are SQLAlchemy connection options (hard to guess) -* `THREAD_PAGE` my understanding was 2/core... might be wrong :) +* `THREADS_PER_PAGE` my understanding was 2/core... might be wrong :) * `CSRF_ENABLED` and `CSRF_SESSION_KEY` are protecting against form post fraud * `RECAPTCHA_*` WTForms comes with a `RecaptchaField` ready to use... just need to go to recaptcha website and get your public and private key.