quick production test script
This commit is contained in:
parent
735ca3d8c6
commit
1e44c7db7a
7 changed files with 562 additions and 2 deletions
|
|
@ -1,2 +1,29 @@
|
|||
# Replace with your DB credentials!
|
||||
DATABASE_URL="postgres://user:password@host:port/db-name"
|
||||
# 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: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
|
||||
Reference in a new issue