Skip to content

Commit

Permalink
refactor: update .env.development for MinIO configuration with specif…
Browse files Browse the repository at this point in the history
…ic values
  • Loading branch information
minai621 committed Nov 11, 2024
1 parent a86de04 commit 091660f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions backend/.env.development
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ LANGCHAIN_PROJECT=your_langsmith_project_name_here
# Available options: false, s3, minio
# If set to false, AWS_S3_BUCKET_NAME is not required.
# Set to true if file upload is required.
FILE_UPLOAD=true
FILE_UPLOAD=minio
# Storage configuration for either AWS S3 or MinIO
# This is the name of the S3 Bucket or MinIO Bucket
BUCKET_NAME="default-storage"
# MINIO_ENDPOINT: The endpoint URL for the MinIO server
# Format: http(s)://<host>:<port>
# Example: http://localhost:9000 (For development mode)
MINIO_ENDPOINT="http://localhost:9000"
MINIO_ENDPOINT="http://minio:9000"
# Common access keys for both S3 and MinIO
# MINIO_ACCESS_KEY: Access key for authentication
# Warning: Use a strong, unique value in production
Expand All @@ -89,4 +89,5 @@ BUCKET_NAME="default-storage"
# Default: minioadmin (for development only)
MINIO_SECRET_KEY="minioadmin"
# AWS Region, only required for AWS S3
AWS_REGION="your_aws_region"
# Example: us-east-1 (for development only)
AWS_REGION="your_aws_region_here"

0 comments on commit 091660f

Please sign in to comment.