Files
booking/config.py
T

11 lines
290 B
Python
Raw Normal View History

2025-02-25 15:38:21 +08:00
DEBUG = True
2025-01-21 20:45:04 +08:00
ALLOWED_EXTENSIONS = {'png', 'jpg', 'jpeg', 'gif'}
2025-01-28 12:33:38 +08:00
MAX_FILE_SIZE = 5 * 1024 * 1024 # 5 MB
USE_EXTERNAL_SMTP = False
SMTP_SERVER = 'smtp.example.com'
SMTP_PORT = 587
SMTP_USE_TLS = True
SMTP_SENDER_EMAIL = 'your_email@example.com'
SMTP_SENDER_PASSWORD = 'your_email_password'