123456789101112131415161718192021222324252627282930313233 |
- from pydantic import Field
- from pydantic_settings import BaseSettings
- from pydantic_settings import SettingsConfigDict
- class Config(BaseSettings):
- model_config = SettingsConfigDict(
- # read from dotenv format config file
- env_file=".env",
- env_file_encoding="utf-8",
- # ignore extra attributes
- extra="ignore",
- )
- BASE_URL: str = Field(
- description='base url',
- default='http://127.0.0.1:8000'
- )
- API_USERNAME: str = Field(
- description='username',
- default='admin'
- )
- API_PASSWORD: str = Field(
- description='password',
- default='admin'
- )
- DB_URL: str = Field(
- description='database url',
- default='postgresql+psycopg2://user:password@localhost/dbname'
- )
|