ci: use redis credentials only on prod env
This commit is contained in:
parent
94cf57cfda
commit
68e6967cee
@ -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,
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user