11 lines
263 B
Python
11 lines
263 B
Python
#REDIS_URL = 'redis://localhost:6379/1'
|
|
|
|
# You can also specify the Redis DB to use
|
|
REDIS_HOST = 'localhost'
|
|
REDIS_PORT = 6379
|
|
REDIS_DB = 0
|
|
# REDIS_PASSWORD = 'very secret'
|
|
REDIS_PASSWORD = '24068Seriate'
|
|
|
|
# Queues to listen on
|
|
QUEUES = ['high', 'default', 'low'] |