17 lines
264 B
Python
17 lines
264 B
Python
# app/core/config.py
|
|
|
|
from pydantic_settings import BaseSettings
|
|
|
|
class Settings(BaseSettings):
|
|
database_url: str
|
|
secret_key: str
|
|
algorithm: str
|
|
access_token_expire_minutes: int
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
|
|
settings = Settings()
|
|
|
|
|