ci: use redis credentials only on prod env
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
Build and Push Docker Image / tests (push) Has been cancelled

This commit is contained in:
Lars Hampe 2024-11-05 16:02:40 +01:00
parent 94cf57cfda
commit 68e6967cee
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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