123456789101112131415161718192021222324252627282930313233 |
- from pydantic import Field
- from pydantic_settings import BaseSettings
- class DeploymentConfig(BaseSettings):
- """
- Deployment configs
- """
- APPLICATION_NAME: str = Field(
- description="application name",
- default="langgenius/dify",
- )
- DEBUG: bool = Field(
- description="whether to enable debug mode.",
- default=False,
- )
- TESTING: bool = Field(
- description="",
- default=False,
- )
- EDITION: str = Field(
- description="deployment edition",
- default="SELF_HOSTED",
- )
- DEPLOY_ENV: str = Field(
- description="deployment environment, default to PRODUCTION.",
- default="PRODUCTION",
- )
|