## SECURITY WARNING: This is an example file. Never commit your actual .env file to version control!
## APP_ENV=production -> to hide the error page
## APP_DEBUG=false -> to hide the error page
## APP_TIMEZONE -> https://en.wikipedia.org/wiki/List_of_tz_database_time_zones?msclkid=49a1e75dac5011ecb2ff673d81958373
## APP_URL -> your PHP/Laravel Admin panel URL with https:// & NO trailing '/' at the end
## NODE_URL -> your Node Server URL with https:// & NO trailing '/' at the end

# App configs
APP_NAME="Nearbuy-WG"
APP_KEY=base64:exPV8trU3Wjcy9+XtnhuZZPvHyNPsuxnr4ziKtmKQ+0=
APP_ENV=production
APP_DEBUG=false
APP_LOG_LEVEL=error
APP_LANG=us
APP_THEME=light-layout
APP_TIMEZONE=UTC

APP_URL=https://whatsapp.procharmate.com
NODE_URL=https://api.procharmate.com
NODE_PORT=8000

# Extra configs
## TEST_CRONJOB=1234567890 #Please change the receiver phone number
## RECORD_MESSAGES=text,media
## PAYPAL_SANDBOX=false

# Database - CHANGE THESE CREDENTIALS!
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=procharmate_whatsapp
DB_USERNAME=procharmate_whatsapp
DB_PASSWORD=procharmate_whatsapp

# Outgoing mail server - CONFIGURE WITH YOUR SMTP DETAILS
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=your-email@gmail.com
MAIL_PASSWORD=your-app-specific-password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS="noreply@yourdomain.com"
MAIL_FROM_NAME="${APP_NAME}"

# Session Security
SESSION_SECURE_COOKIE=true
SESSION_HTTP_ONLY=true
SESSION_SAME_SITE=strict

# Additional Security Settings
# Generate strong random values for production use
# Use: php artisan key:generate
# Use: openssl rand -hex 32
