27 lines
561 B
Plaintext
27 lines
561 B
Plaintext
# Database Configuration
|
|
DB_SERVER=localhost
|
|
DB_USERNAME=root
|
|
DB_PASSWORD=
|
|
DB_NAME=shubraveil_db
|
|
|
|
# SMTP Configuration
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USERNAME=your-email@gmail.com
|
|
SMTP_PASSWORD=your-app-password
|
|
SMTP_FROM_EMAIL=noreply@shubraveil.com
|
|
SMTP_FROM_NAME=ShubraVeil
|
|
|
|
# Site Configuration
|
|
SITE_URL=http://localhost/shubraveil
|
|
DEBUG_MODE=true
|
|
|
|
# Security
|
|
JWT_SECRET=change_this_to_a_secure_secret_key
|
|
RECAPTCHA_SITE_KEY=your_recaptcha_site_key
|
|
RECAPTCHA_SECRET_KEY=your_recaptcha_secret_key
|
|
|
|
# Cache
|
|
CACHE_ENABLED=true
|
|
CACHE_DURATION=3600
|