- Replace local directus_uploads volume with S3 - Add MinIO credentials to environment config - Files now stored in s3.b28.dev/directus-uploads - Enables shared media access across all demos 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
737 B
Plaintext
25 lines
737 B
Plaintext
# Portfolio Infrastructure - Environment Configuration
|
|
# Copy this to .env and fill in your values
|
|
|
|
# Database Configuration
|
|
DB_USER=directus
|
|
DB_PASSWORD=your_secure_database_password_here
|
|
|
|
# Directus Admin Account
|
|
ADMIN_EMAIL=your_email@example.com
|
|
ADMIN_PASSWORD=your_secure_admin_password_here
|
|
|
|
# Directus Security Keys (generate with: openssl rand -base64 32)
|
|
DIRECTUS_KEY=your_directus_key_here
|
|
DIRECTUS_SECRET=your_directus_secret_here
|
|
|
|
# Public URL
|
|
# For local: http://localhost:8055
|
|
# For Coolify: https://directus.yourdomain.com
|
|
PUBLIC_URL=http://localhost:8055
|
|
|
|
# MinIO S3 Storage Configuration
|
|
# These credentials should match your MinIO root user
|
|
MINIO_ACCESS_KEY=your_minio_access_key
|
|
MINIO_SECRET_KEY=your_minio_secret_key
|