아바타 저장소 승격 계약을 완성
This commit is contained in:
parent
ac9b702688
commit
ccdcfcd2f5
36 changed files with 14734 additions and 222 deletions
|
|
@ -465,6 +465,26 @@ class Settings(BaseSettings):
|
|||
default="uploads",
|
||||
validation_alias="USER_UPLOAD_DIR",
|
||||
)
|
||||
user_upload_manifest_required: bool = Field(
|
||||
default=False,
|
||||
validation_alias="USER_UPLOAD_MANIFEST_REQUIRED",
|
||||
)
|
||||
user_upload_manifest_path: str = Field(
|
||||
default="",
|
||||
validation_alias="USER_UPLOAD_MANIFEST_PATH",
|
||||
)
|
||||
user_upload_manifest_sha256: str = Field(
|
||||
default="",
|
||||
validation_alias="USER_UPLOAD_MANIFEST_SHA256",
|
||||
)
|
||||
user_upload_write_freeze_path: str = Field(
|
||||
default="",
|
||||
validation_alias="USER_UPLOAD_WRITE_FREEZE_PATH",
|
||||
)
|
||||
public_runtime_db_target_sha256: str = Field(
|
||||
default="",
|
||||
validation_alias="PUBLIC_RUNTIME_DB_TARGET_SHA256",
|
||||
)
|
||||
|
||||
# ── 운영 메일 알림 ─────────────────────────────────────
|
||||
notification_email_provider: Literal["disabled", "smtp"] = Field(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue