diff --git a/apps/api/src/utils/redis.ts b/apps/api/src/utils/redis.ts index 4aaf27b..a7724a2 100644 --- a/apps/api/src/utils/redis.ts +++ b/apps/api/src/utils/redis.ts @@ -1,7 +1,7 @@ import { createClient } from 'redis' const getRedisOptions = () => { - if (import.meta.env.NODE_ENV !== 'production') { + if (import.meta.env.NODE_ENV === 'production') { return { password: import.meta.env.REDIS_PASSWORD, url: import.meta.env.REDIS_URL, diff --git a/docker-compose.yaml b/docker-compose.yaml index e763897..96b9088 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -15,7 +15,7 @@ services: restart: always ports: - '6379:6379' - command: redis-server --save 20 1 --loglevel warning --requirepass development + # command: redis-server --save 20 1 --loglevel warning --requirepass development loki: image: grafana/loki:latest