35 lines
1006 B
Plaintext
35 lines
1006 B
Plaintext
# Hotel Booking API - Environment Variables
|
|
# Copy this file to .env and fill in your actual values
|
|
|
|
# ============================================
|
|
# Email/SMTP Configuration
|
|
# ============================================
|
|
# SMTP Server Settings
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=your-email@gmail.com
|
|
SMTP_PASSWORD=your-app-specific-password
|
|
|
|
# Email Sender Information
|
|
SMTP_FROM_EMAIL=noreply@yourdomain.com
|
|
SMTP_FROM_NAME=Hotel Booking
|
|
|
|
# Alternative: Legacy environment variable names (for backward compatibility)
|
|
# MAIL_HOST=smtp.gmail.com
|
|
# MAIL_PORT=587
|
|
# MAIL_USER=your-email@gmail.com
|
|
# MAIL_PASS=your-app-specific-password
|
|
# MAIL_FROM=noreply@yourdomain.com
|
|
# MAIL_SECURE=false
|
|
|
|
# ============================================
|
|
# Other Required Variables
|
|
# ============================================
|
|
CLIENT_URL=http://localhost:5173
|
|
DB_USER=root
|
|
DB_PASS=your_database_password
|
|
DB_NAME=hotel_db
|
|
DB_HOST=localhost
|
|
DB_PORT=3306
|
|
JWT_SECRET=your-super-secret-jwt-key-change-in-production
|