also change the default to be redis regardless

This commit is contained in:
codl 2017-08-10 17:22:32 +02:00
parent f52144008b
commit dcc328334f
No known key found for this signature in database
GPG Key ID: 6CD7C8891ED1233A
1 changed files with 2 additions and 1 deletions

3
app.py
View File

@ -16,7 +16,8 @@ default_config = {
"SECRET_KEY": "hunter2",
"CELERY_BROKER": "amqp://",
"HTTPS": True,
"SENTRY_CONFIG": {}
"SENTRY_CONFIG": {},
"RATELIMIT_STORAGE_URL": "redis://",
}
app.config.update(default_config)