23 lines
628 B
Plaintext
23 lines
628 B
Plaintext
# Database Configuration
|
|
DATABASE_URL=postgresql://postgres:password@db:5432/vip_coordinator
|
|
|
|
# Redis Configuration
|
|
REDIS_URL=redis://redis:6379
|
|
|
|
# Authentication Configuration
|
|
JWT_SECRET=your-super-secure-jwt-secret-key-change-in-production
|
|
SESSION_SECRET=your-super-secure-session-secret-change-in-production
|
|
|
|
# Google OAuth Configuration
|
|
GOOGLE_CLIENT_ID=your-google-client-id-from-console
|
|
GOOGLE_CLIENT_SECRET=your-google-client-secret-from-console
|
|
|
|
# Frontend URL
|
|
FRONTEND_URL=http://localhost:5173
|
|
|
|
# Flight API Configuration
|
|
AVIATIONSTACK_API_KEY=your-aviationstack-api-key
|
|
|
|
# Admin Configuration
|
|
ADMIN_PASSWORD=admin123
|