2
0
mirror of https://github.com/codl/forget synced 2025-01-19 02:20:40 +01:00

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

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)