vip11017's picture
Reinitialize repo
f943b70
raw
history blame contribute delete
234 Bytes
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
mongo_uri: str
mongo_db_password: str
mongo_db_name: str
jwt_secret: str
class Config:
env_file = ".env"
settings = Settings()