This pull request includes changes to the access_amherst_backend/settings.py file to modify security settings and allow additional hosts. The most important changes include setting the SECRET_KEY to a default insecure value, enabling debug mode, and adding a new host to the ALLOWED_HOSTS list.
This pull request includes changes to the
access_amherst_backend/settings.py
file to modify security settings and allow additional hosts. The most important changes include setting theSECRET_KEY
to a default insecure value, enabling debug mode, and adding a new host to theALLOWED_HOSTS
list.Security and configuration changes:
access_amherst_backend/settings.py
: SetSECRET_KEY
to a default insecure value for development purposes.access_amherst_backend/settings.py
: EnabledDEBUG
mode for development purposes.access_amherst_backend/settings.py
: Added a new host to theALLOWED_HOSTS
list to allow access from a Gitpod workspace.