Suman-SG/helmet-system
0
1# Gmail Configuration2SMTP_SERVER=smtp.gmail.com3SMTP_PORT=5874SMTP_USER=your-email@gmail.com5SMTP_PASSWORD=your-app-password-here6FROM_EMAIL=Traffic Violation System <your-email@gmail.com>7 8# Web app security9SECRET_KEY=change-this-before-deploy10ADMIN_USERNAME=admin11ADMIN_PASSWORD=200612 13# Email Sending14SEND_EMAIL=False15FAST_MODE=True16TEST_MODE=False17 18# Test Email19TEST_EMAIL=test@example.com20 21# Note: 22# 1. Generate Gmail App Password at: https://myaccount.google.com/apppasswords23# 2. Set SEND_EMAIL=True only after adding real credentials24# 3. Copy this file to .env and fill in your actual values25 