We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1c138 commit a50b9b6Copy full SHA for a50b9b6
configs/config.go
@@ -302,11 +302,10 @@ type Config struct {
302
ParquetMaxFileSizeMB int64 `env:"PARQUET_MAX_FILE_SIZE_MB" envDefault:"512"`
303
InsightServiceUrl string `env:"INSIGHT_SERVICE_URL" envDefault:"https://insight.thirdweb.com"`
304
InsightServiceApiKey string `env:"INSIGHT_SERVICE_API_KEY"`
305
- RedisAddr string `env:"REDIS_ADDR"`
+ RedisAddr string `env:"REDIS_ADDR" envDefault:"localhost:6379"`
306
RedisUsername string `env:"REDIS_USERNAME"`
307
RedisPassword string `env:"REDIS_PASSWORD"`
308
- RedisDB int `env:"REDIS_DB"`
309
- RedisEnableTLS bool `env:"REDIS_ENABLE_TLS" envDefault:"true"`
+ RedisDB int `env:"REDIS_DB" envDefault:"0"`
310
}
311
312
var Cfg Config
0 commit comments