__init__.py 356 B

1234567891011121314151617
  1. from pydantic import BaseModel, Field
  2. class DeploymentConfigs(BaseModel):
  3. """
  4. Deployment configs
  5. """
  6. EDITION: str = Field(
  7. description='deployment edition',
  8. default='SELF_HOSTED',
  9. )
  10. DEPLOY_ENV: str = Field(
  11. description='deployment environment, default to PRODUCTION.',
  12. default='PRODUCTION',
  13. )