set default PRESIGNED_URL_EXPIRATION 24 hours (#1309)

This commit is contained in:
Shuchang Zheng
2024-12-02 19:21:12 -08:00
committed by GitHub
parent 6db01f4783
commit f6d7f36e65

View File

@@ -61,6 +61,7 @@ class Settings(BaseSettings):
AWS_REGION: str = "us-east-1"
AWS_S3_BUCKET_UPLOADS: str = "skyvern-uploads"
MAX_UPLOAD_FILE_SIZE: int = 10 * 1024 * 1024 # 10 MB
PRESIGNED_URL_EXPIRATION: int = 60 * 60 * 24 # 24 hours
SKYVERN_TELEMETRY: bool = True
ANALYTICS_ID: str = "anonymous"