fix: redis default password, update README with kustomize structure

This commit is contained in:
Chris Rai
2026-01-31 01:10:20 -05:00
parent ba426ece8e
commit 0469987c56
2 changed files with 44 additions and 13 deletions

View File

@@ -16,7 +16,7 @@ import (
var (
host = envtool.GetEnv("REDIS_HOST", "localhost")
port = envtool.GetEnv("REDIS_PORT", "6379")
password = envtool.GetEnv("REDIS_PASSWORD", "REPLACE_ME")
password = envtool.GetEnv("REDIS_PASSWORD", "")
addr = fmt.Sprintf("%v:%v", host, port)
)