A typo. I placed THREADS_PER_PAGE instead of THREADS_PAGE.

Andriy Andrusyk 2015-07-15 21:14:32 +03:00
parent 8419bbc260
commit 5bfa89db51

@ -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. * `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. * `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) * `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 * `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. * `RECAPTCHA_*` WTForms comes with a `RecaptchaField` ready to use... just need to go to recaptcha website and get your public and private key.