also change the default to be redis regardless
This commit is contained in:
parent
f52144008b
commit
dcc328334f
3
app.py
3
app.py
|
@ -16,7 +16,8 @@ default_config = {
|
||||||
"SECRET_KEY": "hunter2",
|
"SECRET_KEY": "hunter2",
|
||||||
"CELERY_BROKER": "amqp://",
|
"CELERY_BROKER": "amqp://",
|
||||||
"HTTPS": True,
|
"HTTPS": True,
|
||||||
"SENTRY_CONFIG": {}
|
"SENTRY_CONFIG": {},
|
||||||
|
"RATELIMIT_STORAGE_URL": "redis://",
|
||||||
}
|
}
|
||||||
|
|
||||||
app.config.update(default_config)
|
app.config.update(default_config)
|
||||||
|
|
Loading…
Reference in New Issue