updated redis impl
This commit is contained in:
@@ -3,12 +3,12 @@ from pydantic_settings import BaseSettings, SettingsConfigDict
|
||||
|
||||
class Configs(BaseSettings):
|
||||
"""
|
||||
MongoDB configuration settings.
|
||||
Redis configuration settings.
|
||||
"""
|
||||
|
||||
HOST: str = ""
|
||||
PASSWORD: str = ""
|
||||
PORT: int = 0
|
||||
HOST: str = "10.10.2.15"
|
||||
PASSWORD: str = "your_strong_password_here"
|
||||
PORT: int = 6379
|
||||
DB: int = 0
|
||||
|
||||
def as_dict(self):
|
||||
|
||||
Reference in New Issue
Block a user