34 lines
697 B
Python
34 lines
697 B
Python
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",
|
|
)
|