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' import { createClient } from 'redis'
const getRedisOptions = () => { const getRedisOptions = () => {
if (import.meta.env.NODE_ENV !== 'production') { if (import.meta.env.NODE_ENV === 'production') {
return { return {
password: import.meta.env.REDIS_PASSWORD, password: import.meta.env.REDIS_PASSWORD,
url: import.meta.env.REDIS_URL, url: import.meta.env.REDIS_URL,

View File

@ -15,7 +15,7 @@ services:
restart: always restart: always
ports: ports:
- '6379:6379' - '6379:6379'
command: redis-server --save 20 1 --loglevel warning --requirepass development # command: redis-server --save 20 1 --loglevel warning --requirepass development
loki: loki:
image: grafana/loki:latest image: grafana/loki:latest