24 lines
No EOL
735 B
Text
24 lines
No EOL
735 B
Text
# Database
|
|
DATABASE_URL="postgresql://user:password@host:port/database?sslmode=require"
|
|
|
|
# Redis (existing)
|
|
REDIS_URL="your-redis-url"
|
|
|
|
# Last.fm API (existing)
|
|
LASTFM_API_KEY="your-lastfm-api-key"
|
|
|
|
# Cloudinary
|
|
CLOUDINARY_CLOUD_NAME="your-cloud-name"
|
|
CLOUDINARY_API_KEY="your-api-key"
|
|
CLOUDINARY_API_SECRET="your-api-secret"
|
|
|
|
# Admin Authentication (for later)
|
|
ADMIN_PASSWORD="your-admin-password"
|
|
|
|
# Apple Music API
|
|
APPLE_MUSIC_TEAM_ID="your-team-id"
|
|
APPLE_MUSIC_KEY_ID="your-key-id"
|
|
# For local development, use path:
|
|
APPLE_MUSIC_PRIVATE_KEY_PATH="path/to/your/private-key.p8"
|
|
# For production, paste the entire .p8 file content:
|
|
# APPLE_MUSIC_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nMIGTAgEAMBMGByq...\n-----END PRIVATE KEY-----" |