fastapi-master/docs_src/settings/app03/config.py

11 lines
204 B
Python
Raw Normal View History

2024-08-24 12:41:47 +08:00
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
app_name: str = "Awesome API"
admin_email: str
items_per_user: int = 50
class Config:
env_file = ".env"