support aws s3 storage (#720)

This commit is contained in:
Shuchang Zheng
2024-08-29 15:01:13 -07:00
committed by GitHub
parent 11811e74bf
commit ffc4b35032
4 changed files with 60 additions and 0 deletions

View File

@@ -45,6 +45,11 @@ class Settings(BaseSettings):
# Artifact storage settings
ARTIFACT_STORAGE_PATH: str = f"{SKYVERN_DIR}/artifacts"
GENERATE_PRESIGNED_URLS: bool = False
AWS_S3_BUCKET_ARTIFACTS: str = "skyvern-artifacts"
AWS_S3_BUCKET_SCREENSHOTS: str = "skyvern-screenshots"
# Supported storage types: local, s3
SKYVERN_STORAGE_TYPE: str = "local"
# S3 bucket settings
AWS_REGION: str = "us-east-1"