Merge pull request #10308 from crpietschmann/azure-storage

feat: Add AzureStorageProvider for Azure Blob Storage support
This commit is contained in:
Timothy Jaeryang Baek
2025-02-18 19:32:17 -08:00
committed by GitHub
4 changed files with 234 additions and 0 deletions

View File

@@ -684,6 +684,10 @@ GOOGLE_APPLICATION_CREDENTIALS_JSON = os.environ.get(
"GOOGLE_APPLICATION_CREDENTIALS_JSON", None
)
AZURE_STORAGE_ENDPOINT = os.environ.get("AZURE_STORAGE_ENDPOINT", None)
AZURE_STORAGE_CONTAINER_NAME = os.environ.get("AZURE_STORAGE_CONTAINER_NAME", None)
AZURE_STORAGE_KEY = os.environ.get("AZURE_STORAGE_KEY", None)
####################################
# File Upload DIR
####################################