26 lines
774 B
Plaintext
26 lines
774 B
Plaintext
# VIP Coordinator Environment Configuration
|
|
# Copy this file to .env and update the values for your deployment
|
|
|
|
# Database Configuration
|
|
DB_PASSWORD=VipCoord2025SecureDB
|
|
|
|
# Domain Configuration (Update these for your domain)
|
|
DOMAIN=your-domain.com
|
|
VITE_API_URL=https://api.your-domain.com
|
|
|
|
# Google OAuth Configuration (Get these from Google Cloud Console)
|
|
GOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com
|
|
GOOGLE_CLIENT_SECRET=your-google-client-secret
|
|
GOOGLE_REDIRECT_URI=https://api.your-domain.com/auth/google/callback
|
|
|
|
# Frontend URL
|
|
FRONTEND_URL=https://your-domain.com
|
|
|
|
# Admin Configuration
|
|
ADMIN_PASSWORD=ChangeThisSecurePassword
|
|
|
|
# Flight API Configuration (Optional)
|
|
AVIATIONSTACK_API_KEY=your-aviationstack-api-key
|
|
|
|
# Port Configuration
|
|
PORT=3000 |