# IMPORTANT: Copy this file content to Backend/.env manually
# This is a template because .env is gitignored

# Server Configuration
PORT=3000
NODE_ENV=production

# Database Configuration
DB_HOST=localhost
DB_PORT=3306
DB_NAME=althvfvi_hotel_ordering_db
DB_USER=althvfvi_hote
DB_PASSWORD=5501@Hotel

# JWT Secret (Change this to a random string in production)
JWT_SECRET=hotel_ordering_super_secret_jwt_key_2024_change_in_production
JWT_EXPIRES_IN=7d

# Super Admin Credentials (First time setup)
SUPER_ADMIN_EMAIL=superadmin@hotelwebpage.althario.com
SUPER_ADMIN_PASSWORD=SuperAdmin@123

# File Upload
MAX_FILE_SIZE=5242880
UPLOAD_PATH=public/uploads

# Frontend URL (for CORS)
FRONTEND_URL=http://hotelwebpage.althario.com/

# Default Credentials
SUPER_ADMIN_EMAIL=superadmin@hotel.com
SUPER_ADMIN_PASSWORD=SuperAdmin@123
DEMO_HOTEL_EMAIL=demo@hotel.com
DEMO_HOTEL_PASSWORD=demo123

# Access Links
ADMIN_LOGIN_URL=http://hotelwebpage.althario.com/admin/login
SUPER_ADMIN_LOGIN_URL=http://hotelwebpage.althario.com/super-admin/login
