# DryClean360 environment configuration
DEBUG=True
SECRET_KEY=change-me-to-a-secure-random-string
ALLOWED_HOSTS=localhost,127.0.0.1

# Development server (8003 avoids conflict with other local apps on 8000)
DEV_SERVER_HOST=127.0.0.1
DEV_SERVER_PORT=8003

# Database — MySQL (live / production)
DB_ENGINE=django.db.backends.mysql
DB_NAME=dryclean360_db
DB_USER=root
DB_PASSWORD=2025@Aashusush!
DB_HOST=localhost
DB_PORT=3306

# Set True only for one-off SQLite export; False for MySQL (default live)
USE_SQLITE=False

# Email (for password reset)
EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_USE_TLS=True
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=
DEFAULT_FROM_EMAIL=DryClean360 <noreply@dryclean360.io>

# Redis / Celery
CELERY_BROKER_URL=redis://localhost:6379/0
CELERY_RESULT_BACKEND=redis://localhost:6379/0

# Shop settings
SHOP_NAME=National Dry Cleaners
SHOP_OWNER=Mr. Riyaz
SHOP_PHONE=+91-XXXXXXXXXX
SHOP_ADDRESS=Your shop address here
