init
This commit is contained in:
24
.env.example
Normal file
24
.env.example
Normal file
@@ -0,0 +1,24 @@
|
||||
# Database Configuration
|
||||
DATABASE_URL=postgresql://user:password@localhost:5432/datalake
|
||||
|
||||
# Storage Backend Configuration
|
||||
# Options: "s3" or "minio"
|
||||
STORAGE_BACKEND=minio
|
||||
|
||||
# AWS S3 Configuration (when STORAGE_BACKEND=s3)
|
||||
AWS_ACCESS_KEY_ID=your_access_key
|
||||
AWS_SECRET_ACCESS_KEY=your_secret_key
|
||||
AWS_REGION=us-east-1
|
||||
S3_BUCKET_NAME=test-artifacts
|
||||
|
||||
# MinIO Configuration (when STORAGE_BACKEND=minio)
|
||||
MINIO_ENDPOINT=localhost:9000
|
||||
MINIO_ACCESS_KEY=minioadmin
|
||||
MINIO_SECRET_KEY=minioadmin
|
||||
MINIO_BUCKET_NAME=test-artifacts
|
||||
MINIO_SECURE=false
|
||||
|
||||
# Application Configuration
|
||||
API_HOST=0.0.0.0
|
||||
API_PORT=8000
|
||||
MAX_UPLOAD_SIZE=524288000
|
||||
Reference in New Issue
Block a user