32 lines
No EOL
989 B
Text
32 lines
No EOL
989 B
Text
# Rugplay Environment Configuration
|
|
# Copy this file to .env and fill in your actual values
|
|
|
|
# Database Configuration
|
|
DATABASE_URL=postgresql://username:password@postgres:5432/rugplay
|
|
POSTGRES_USER=rugplay_user
|
|
POSTGRES_PASSWORD=your_secure_password_here
|
|
POSTGRES_DB=rugplay
|
|
|
|
# Redis Configuration
|
|
REDIS_URL=redis://redis:6379
|
|
|
|
# Authentication
|
|
PRIVATE_BETTER_AUTH_SECRET=your_super_secret_auth_key_here
|
|
PUBLIC_BETTER_AUTH_URL=http://localhost:5173 # Change for Production to http://localhost:3002
|
|
|
|
# Google OAuth (optional - for social login)
|
|
GOOGLE_CLIENT_ID=your_google_client_id
|
|
GOOGLE_CLIENT_SECRET=your_google_client_secret
|
|
|
|
# AWS S3/B2 Storage (for file uploads)
|
|
PRIVATE_B2_KEY_ID=your_b2_key_id
|
|
PRIVATE_B2_APP_KEY=your_b2_app_key
|
|
PUBLIC_B2_BUCKET=your_bucket_name
|
|
PUBLIC_B2_ENDPOINT=https://s3.us-west-002.backblazeb2.com
|
|
PUBLIC_B2_REGION=us-west-002
|
|
|
|
# OpenAI (for AI features)
|
|
OPENROUTER_API_KEY=your_openrouter_api_key
|
|
|
|
# Websocket URL
|
|
PUBLIC_WEBSOCKET_URL=http://localhost:8080 |