mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
3cc6093e4b
Co-authored-by: -LAN- <laipz8200@outlook.com>
17 lines
356 B
Python
17 lines
356 B
Python
from pydantic import BaseModel, Field
|
|
|
|
|
|
class DeploymentConfigs(BaseModel):
|
|
"""
|
|
Deployment configs
|
|
"""
|
|
EDITION: str = Field(
|
|
description='deployment edition',
|
|
default='SELF_HOSTED',
|
|
)
|
|
|
|
DEPLOY_ENV: str = Field(
|
|
description='deployment environment, default to PRODUCTION.',
|
|
default='PRODUCTION',
|
|
)
|