skill-forge/API/app/settings.py

20 lines
376 B
Python

from pydantic_settings import BaseSettings
class Settings(BaseSettings):
DATABASE_URL: str
SECRET_KEY: str
ALGORITHM: str
APP_PREFIX: str = '/api/v1'
class Config:
env_file = '.env'
env_file_encoding = 'utf-8'
settings = Settings()
def get_auth_data():
return {'secret_key': settings.SECRET_KEY, 'algorithm': settings.ALGORITHM}