Add 0.30 release notes (#7300)
In this PR: - update your environment variables to default `CACHE_STORAGE_TYPE` to `redis` and `MESSAGE_QUEUE_TYPE` to `bull-mq` - add redis container to our default docker-compose - add `REDIS_HOST` and `REDIS_PORT` to docker-compose yaml - add upgrade instructions
This commit is contained in:
@ -391,7 +391,7 @@ export class EnvironmentVariables {
|
||||
@CastToBoolean()
|
||||
MESSAGING_PROVIDER_GMAIL_ENABLED = false;
|
||||
|
||||
MESSAGE_QUEUE_TYPE: string = MessageQueueDriverType.Sync;
|
||||
MESSAGE_QUEUE_TYPE: string = MessageQueueDriverType.BullMQ;
|
||||
|
||||
EMAIL_FROM_ADDRESS = 'noreply@yourdomain.com';
|
||||
|
||||
@ -426,7 +426,7 @@ export class EnvironmentVariables {
|
||||
@CastToPositiveNumber()
|
||||
API_RATE_LIMITING_LIMIT = 500;
|
||||
|
||||
CACHE_STORAGE_TYPE: CacheStorageType = CacheStorageType.Memory;
|
||||
CACHE_STORAGE_TYPE: CacheStorageType = CacheStorageType.Redis;
|
||||
|
||||
@CastToPositiveNumber()
|
||||
CACHE_STORAGE_TTL: number = 3600 * 24 * 7;
|
||||
|
||||
Reference in New Issue
Block a user