setting.py 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. from pydantic import Field
  2. from pydantic_settings import BaseSettings
  3. from pydantic_settings import SettingsConfigDict
  4. class Config(BaseSettings):
  5. model_config = SettingsConfigDict(
  6. # read from dotenv format config file
  7. env_file=".env",
  8. env_file_encoding="utf-8",
  9. # ignore extra attributes
  10. extra="ignore",
  11. )
  12. BASE_URL: str = Field(
  13. description='base url',
  14. default='http://127.0.0.1:8000'
  15. )
  16. API_USERNAME: str = Field(
  17. description='username',
  18. default='admin'
  19. )
  20. API_PASSWORD: str = Field(
  21. description='password',
  22. default='admin'
  23. )
  24. DB_URL: str = Field(
  25. description='database url',
  26. default='postgresql+psycopg2://user:password@localhost/dbname'
  27. )
  28. DCIM_BASE_URL: str = Field(
  29. description='DCIM base url',
  30. default='https://10.10.10.10:32102'
  31. )
  32. DCIM_API_USERNAME: str = Field(
  33. description='DCIM API username',
  34. default='TestUser'
  35. )
  36. DCIM_API_PASSWORD: str = Field(
  37. description='DCIM API password',
  38. default='Test_12345'
  39. )