fix(file): S3 file storage resolves the issue of inconsistent end_point and region.

This commit is contained in:
Timebomb2018
2026-03-10 18:05:34 +08:00
parent fcb3845543
commit 45d9e45346
3 changed files with 26 additions and 0 deletions

View File

@@ -114,6 +114,7 @@ class Settings:
S3_ACCESS_KEY_ID: str = os.getenv("S3_ACCESS_KEY_ID", "")
S3_SECRET_ACCESS_KEY: str = os.getenv("S3_SECRET_ACCESS_KEY", "")
S3_BUCKET_NAME: str = os.getenv("S3_BUCKET_NAME", "")
S3_ENDPOINT_URL: str = os.getenv("S3_ENDPOINT_URL", "")
# VOLC ASR settings
VOLC_APP_KEY: str = os.getenv("VOLC_APP_KEY", "")