Skip to content

Commit

Permalink
refactor: update .env.development with detailed comments for MinIO co…
Browse files Browse the repository at this point in the history
…nfiguration
  • Loading branch information
minai621 committed Nov 11, 2024
1 parent d38b9d2 commit a86de04
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions backend/.env.development
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,18 @@ FILE_UPLOAD=true
# 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, only required for MinIO
MINIO_ENDPOINT="http://localhost:9000"
# 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"
# Common access keys for both S3 and MinIO
MINIO_ACCESS_KEY="minioadmin"
MINIO_SECRET_KEY="minioadmin"
# AWS Region, only required for AWS S3
# MINIO_ACCESS_KEY: Access key for authentication
# Warning: Use a strong, unique value in production
# Default: minioadmin (for development only)
MINIO_ACCESS_KEY="minioadmin"
# MINIO_SECRET_KEY: Secret key for authentication
# Warning: Keep this value secret and never commit to version control
# Default: minioadmin (for development only)
MINIO_SECRET_KEY="minioadmin"
# AWS Region, only required for AWS S3
AWS_REGION="your_aws_region"

0 comments on commit a86de04

Please sign in to comment.