# Django Settings SECRET_KEY=your-secret-key-here DEBUG=True ALLOWED_HOSTS=localhost,127.0.0.1 # Database Settings DB_NAME=gnxmail DB_USER=postgres DB_PASSWORD=password DB_HOST=localhost DB_PORT=5432 # Email Settings EMAIL_HOST=smtp.gmail.com EMAIL_PORT=587 EMAIL_USE_TLS=True EMAIL_HOST_USER=your-email@gmail.com EMAIL_HOST_PASSWORD=your-app-password DEFAULT_FROM_EMAIL=noreply@gnxmail.com # Celery Settings CELERY_BROKER_URL=redis://localhost:6379/0 CELERY_RESULT_BACKEND=redis://localhost:6379/0 # Encryption Key for passwords ENCRYPTION_KEY=your-encryption-key-here # Frontend URL REACT_APP_API_URL=http://localhost:8000/api