22 lines
543 B
Bash
22 lines
543 B
Bash
# Required Environment Variables for TT Booking
|
|
|
|
# Generate with: openssl rand -base64 32
|
|
NEXTAUTH_SECRET=your-secret-key-here
|
|
|
|
# Your application URL
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
|
|
# Admin user credentials (change these!)
|
|
ADMIN_EMAIL=admin@your-domain.com
|
|
ADMIN_PASSWORD=your-secure-password
|
|
|
|
# Optional: Email configuration for notifications
|
|
EMAIL_USER=your-email@gmail.com
|
|
EMAIL_PASSWORD=your-gmail-app-password
|
|
|
|
# Optional: Rate limiting (defaults shown)
|
|
RATE_LIMIT_MAX=100
|
|
RATE_LIMIT_WINDOW=900000
|
|
|
|
# Optional: Logging
|
|
LOG_LEVEL=info |