You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. from pydantic import BaseModel, Field
  2. class DeploymentConfig(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. )