Merge pull request #871 from SavinaRoja/857-ease-production

Easier to deploy by avoiding merge conflicts in production
This commit is contained in:
Mouse Reeve
2021-04-12 09:34:38 -07:00
committed by GitHub
9 changed files with 186 additions and 14 deletions

View File

@ -98,6 +98,7 @@ WSGI_APPLICATION = "bookwyrm.wsgi.application"
# redis/activity streams settings
REDIS_ACTIVITY_HOST = env("REDIS_ACTIVITY_HOST", "localhost")
REDIS_ACTIVITY_PORT = env("REDIS_ACTIVITY_PORT", 6379)
REDIS_ACTIVITY_PASSWORD = env("REDIS_ACTIVITY_PASSWORD", None)
MAX_STREAM_LENGTH = int(env("MAX_STREAM_LENGTH", 200))
STREAMS = ["home", "local", "federated"]