You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.
The text was updated successfully, but these errors were encountered:
Ideally, in dev mode (or local), we would have this flag set to true but not in prod. Right now, individual developers have to be careful not to commit settings changes that set this to True in prod.
In production,
DEBUG
must be set toFalse
. In other words, I should see a standard 404 page when visiting https://fathomless-inlet-57767.herokuapp.com/ponder/register/:The text was updated successfully, but these errors were encountered: