# Django Settings SECRET_KEY=your-django-secret-key-here DEBUG=True ALLOWED_HOSTS=localhost,127.0.0.1 SECURE_SSL_REDIRECT=False # Email Configuration EMAIL_BACKEND=django.core.mail.backends.console.EmailBackend DEFAULT_FROM_EMAIL=noreply@pyrunner.local RESEND_API_KEY= USE_RESEND=False # django-q2 Workers Q_WORKERS=2 # Secrets Encryption # Generate with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())" ENCRYPTION_KEY=your-fernet-key-here