Sujith2121's picture
Update app/core/settings.py
62e17ce verified
raw
history blame contribute delete
260 Bytes
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
PROJECT_NAME:str="Drowsiness detection api"
DATABASE_URL: str = "sqlite:////tmp/drowsiness.db"
DEBUG:bool=True
class Config:
env_file=".env"
settings=Settings()