[Restore from backup: vip-coordinator-backup-2025-06-08-00-29-user and admin online ready for dockerhub]
27 lines
762 B
Plaintext
27 lines
762 B
Plaintext
# Database Configuration
|
|
POSTGRES_DB=vip_coordinator
|
|
POSTGRES_USER=vip_user
|
|
POSTGRES_PASSWORD=your_secure_password_here
|
|
DATABASE_URL=postgresql://vip_user:your_secure_password_here@db:5432/vip_coordinator
|
|
|
|
# Redis Configuration
|
|
REDIS_URL=redis://redis:6379
|
|
|
|
# Google OAuth Configuration
|
|
GOOGLE_CLIENT_ID=your_google_client_id_here
|
|
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
|
|
GOOGLE_REDIRECT_URI=http://localhost:3000/auth/google/callback
|
|
FRONTEND_URL=http://localhost:5173
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=your_jwt_secret_here_minimum_32_characters_long
|
|
|
|
# Environment
|
|
NODE_ENV=development
|
|
|
|
# API Configuration
|
|
API_PORT=3000
|
|
|
|
# Frontend Configuration (for production)
|
|
VITE_API_URL=http://localhost:3000/api
|
|
VITE_GOOGLE_CLIENT_ID=your_google_client_id_here |