configs: updated dev and production ini files.
- make sure production recommends gunicorn
- make sure we're in sync with all OPTIONS from EE as well
- small tweeks and docs
db: Set `rhodecode.is_test` in `make_pyramid_app` instead of `make_app`
Based on this setting the crypto backend is selected: brypt or md5.
During tests md5 is used to sppedup test execution. We have to move this
setting up to the pyramid layer otherwise the test DB init will use bcrypt
and the tests use md5. This will result in test users not able to login.
db: Change ordering of test env setup and db connection init.
- DB init sets rhodecode.model.db.ENCRYPTION_KEY
- Test env setup resets rhodecode.model.db.ENCRYPTION_KEY to None
- Therefore DB init has to be done after test env setup.