Implement upload_file endpoint (#547)

This commit is contained in:
Kerem Yilmaz
2024-07-03 17:54:31 -07:00
committed by GitHub
parent 03a1b6d92c
commit 21b9eea446
3 changed files with 71 additions and 2 deletions

View File

@@ -48,6 +48,7 @@ class Settings(BaseSettings):
# S3 bucket settings
AWS_REGION: str = "us-east-1"
AWS_S3_BUCKET_UPLOADS: str = "skyvern-uploads"
MAX_UPLOAD_FILE_SIZE: int = 10 * 1024 * 1024 # 10 MB
SKYVERN_TELEMETRY: bool = True
ANALYTICS_ID: str = "anonymous"