[Feature] Adding Azure Blob Storage support to File Upload workflow block (#3130)

This commit is contained in:
Trevor Sullivan
2025-08-07 22:59:37 -06:00
committed by GitHub
parent 71f71b8e77
commit b3e17c12b3
17 changed files with 667 additions and 169 deletions

View File

@@ -76,6 +76,10 @@ class Settings(BaseSettings):
MAX_UPLOAD_FILE_SIZE: int = 10 * 1024 * 1024 # 10 MB
PRESIGNED_URL_EXPIRATION: int = 60 * 60 * 24 # 24 hours
# Azure Blob Storage settings
AZURE_STORAGE_ACCOUNT_NAME: str | None = None
AZURE_STORAGE_ACCOUNT_KEY: str | None = None
SKYVERN_TELEMETRY: bool = True
ANALYTICS_ID: str = "anonymous"