all repos — homestead @ feff5f2aec90e6d8b2d647c7b1994a91c8b2b33b

Code for my website

reduce number of environment variables needed in production

Alan Pearce
commit

feff5f2aec90e6d8b2d647c7b1994a91c8b2b33b

parent

c780aa5eac632a22241f6289969e5b5a99e60745

1 file changed, 2 insertions(+), 3 deletions(-)

changed files
M internal/events/redis.gointernal/events/redis.go
@@ -18,11 +18,10 @@ const key = "run_id"
const fallbackRunID uint64 = 210 type RedisOptions struct { - Enabled bool `conf:"default:false"` - Address string `conf:"default:localhost:6379"` + Address string Username string `conf:"default:default"` Password string `conf:"default:default"` - TLSEnabled bool `conf:"default:false"` + TLSEnabled bool `conf:"default:true"` } type Logger struct {