13 lines
232 B
Python
13 lines
232 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
database_url: str
|
|
jwt_secret: str
|
|
anthropic_api_key: str
|
|
deepl_api_key: str
|
|
|
|
model_config = {"env_file": ".env"}
|
|
|
|
|
|
settings = Settings()
|