Updated ALLOWED_HOSTS to remove the protocol prefix, ensuring compatibility with Django's host validation. This change prevents potential issues with host header mismatches in production environments.
Switched EMAIL_PORT to 465 and enabled SSL while disabling TLS for secure email transmission. This aligns with updated server requirements for email configuration."
The EMAIL_HOST_PASSWORD was updated to a new value in the production configuration. This change ensures secure and up-to-date credentials are used for the email backend. No other settings were modified.
Replaced legacy slide fields with a flexible StreamField approach for EventPage and HomePage models. Includes migrations for data transfer, template updates to support the new StreamField, and deprecation of legacy fields for backward compatibility.
Added 'feoneu.asw.io' to ALLOWED_HOSTS to comply with production environment requirements. This change ensures proper host validation for incoming requests.
Introduce a new `prod.py` settings file for the production environment. This file disables debug mode and sets up a console email backend. It also attempts to import local settings, if available.